diff options
author | Felipe Balbi <balbi@ti.com> | 2011-05-14 00:26:20 +0300 |
---|---|---|
committer | Luciano Coelho <coelho@ti.com> | 2011-06-27 10:15:45 +0300 |
commit | 6bdaf79623e285242cb977840358dc7d14438475 (patch) | |
tree | c3742b780fdf4902b5829b2848726fe403d6e600 | |
parent | 33dd74c7844852afba46f5e19911bcf55a1f04a1 (diff) | |
download | linux-6bdaf79623e285242cb977840358dc7d14438475.tar.gz linux-6bdaf79623e285242cb977840358dc7d14438475.tar.bz2 linux-6bdaf79623e285242cb977840358dc7d14438475.zip |
net: wl12xx: remove some unnecessary prints
Those have little value. Remove those to make
the driver less noisy.
Signed-off-by: Felipe Balbi <balbi@ti.com>
Signed-off-by: Luciano Coelho <coelho@ti.com>
-rw-r--r-- | drivers/net/wireless/wl12xx/sdio.c | 15 |
1 files changed, 1 insertions, 14 deletions
diff --git a/drivers/net/wireless/wl12xx/sdio.c b/drivers/net/wireless/wl12xx/sdio.c index d6dd49ace11e..3b78ab57bccd 100644 --- a/drivers/net/wireless/wl12xx/sdio.c +++ b/drivers/net/wireless/wl12xx/sdio.c @@ -303,8 +303,6 @@ static int __devinit wl1271_probe(struct sdio_func *func, /* Tell PM core that we don't need the card to be powered now */ pm_runtime_put_noidle(&func->dev); - wl1271_notice("initialized"); - return 0; out_irq: @@ -402,23 +400,12 @@ static struct sdio_driver wl1271_sdio_driver = { static int __init wl1271_init(void) { - int ret; - - ret = sdio_register_driver(&wl1271_sdio_driver); - if (ret < 0) { - wl1271_error("failed to register sdio driver: %d", ret); - goto out; - } - -out: - return ret; + return sdio_register_driver(&wl1271_sdio_driver); } static void __exit wl1271_exit(void) { sdio_unregister_driver(&wl1271_sdio_driver); - - wl1271_notice("unloaded"); } module_init(wl1271_init); |