Commit 6bdaf796 authored by Felipe Balbi's avatar Felipe Balbi Committed by Luciano Coelho

net: wl12xx: remove some unnecessary prints

Those have little value. Remove those to make
the driver less noisy.
Signed-off-by: default avatarFelipe Balbi <balbi@ti.com>
Signed-off-by: default avatarLuciano Coelho <coelho@ti.com>
parent 33dd74c7
...@@ -303,8 +303,6 @@ static int __devinit wl1271_probe(struct sdio_func *func, ...@@ -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 */ /* Tell PM core that we don't need the card to be powered now */
pm_runtime_put_noidle(&func->dev); pm_runtime_put_noidle(&func->dev);
wl1271_notice("initialized");
return 0; return 0;
out_irq: out_irq:
...@@ -402,23 +400,12 @@ static struct sdio_driver wl1271_sdio_driver = { ...@@ -402,23 +400,12 @@ static struct sdio_driver wl1271_sdio_driver = {
static int __init wl1271_init(void) static int __init wl1271_init(void)
{ {
int ret; return sdio_register_driver(&wl1271_sdio_driver);
ret = sdio_register_driver(&wl1271_sdio_driver);
if (ret < 0) {
wl1271_error("failed to register sdio driver: %d", ret);
goto out;
}
out:
return ret;
} }
static void __exit wl1271_exit(void) static void __exit wl1271_exit(void)
{ {
sdio_unregister_driver(&wl1271_sdio_driver); sdio_unregister_driver(&wl1271_sdio_driver);
wl1271_notice("unloaded");
} }
module_init(wl1271_init); module_init(wl1271_init);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment