diff options
author | Greg Kroah-Hartman <gregkh@suse.de> | 2011-11-18 09:47:34 -0800 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2011-11-18 09:47:34 -0800 |
commit | 93f1508cffc3d578c2b7bbbf298dc52326b80777 (patch) | |
tree | cf0d5682a008f3368321e5a1c26fbfbdb65c8d39 /drivers/bluetooth/ath3k.c | |
parent | ecb3b2b35db49778b6d89e3ffd0c400776c20735 (diff) | |
download | linux-3.10-93f1508cffc3d578c2b7bbbf298dc52326b80777.tar.gz linux-3.10-93f1508cffc3d578c2b7bbbf298dc52326b80777.tar.bz2 linux-3.10-93f1508cffc3d578c2b7bbbf298dc52326b80777.zip |
USB: convert drivers/bluetooth/* to use module_usb_driver()
This converts the drivers in drivers/bluetooth/* to use the
module_usb_driver() macro which makes the code smaller and a bit
simpler.
Added bonus is that it removes some unneeded kernel log messages about
drivers loading and/or unloading.
Cc: Marcel Holtmann <marcel@holtmann.org>
Cc: "Gustavo F. Padovan" <padovan@profusion.mobi>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/bluetooth/ath3k.c')
-rw-r--r-- | drivers/bluetooth/ath3k.c | 14 |
1 files changed, 1 insertions, 13 deletions
diff --git a/drivers/bluetooth/ath3k.c b/drivers/bluetooth/ath3k.c index 106beb194f3..cf77a9a2bfa 100644 --- a/drivers/bluetooth/ath3k.c +++ b/drivers/bluetooth/ath3k.c @@ -423,19 +423,7 @@ static struct usb_driver ath3k_driver = { .id_table = ath3k_table, }; -static int __init ath3k_init(void) -{ - BT_INFO("Atheros AR30xx firmware driver ver %s", VERSION); - return usb_register(&ath3k_driver); -} - -static void __exit ath3k_exit(void) -{ - usb_deregister(&ath3k_driver); -} - -module_init(ath3k_init); -module_exit(ath3k_exit); +module_usb_driver(ath3k_driver); MODULE_AUTHOR("Atheros Communications"); MODULE_DESCRIPTION("Atheros AR30xx firmware driver"); |