Browse Source

staging:ced1401: use module_usb_driver macro

the module init and exit functions that are
doing usb_register and usb_deregister respectively can be
replaced with module_usb_driver code

Signed-off-by: Devendra Naga <devendra.aaru@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Devendra Naga 12 years ago
parent
commit
2341111f6d
1 changed files with 1 additions and 15 deletions
  1. 1 15
      drivers/staging/ced1401/usb1401.c

+ 1 - 15
drivers/staging/ced1401/usb1401.c

@@ -1653,19 +1653,5 @@ static struct usb_driver ced_driver = {
 	.supports_autosuspend = 1,
 };
 
-static int __init usb_skel_init(void)
-{
-	/* register this driver with the USB subsystem */
-	return usb_register(&ced_driver);
-}
-
-static void __exit usb_skel_exit(void)
-{
-	/* deregister this driver with the USB subsystem */
-	usb_deregister(&ced_driver);
-}
-
-module_init(usb_skel_init);
-module_exit(usb_skel_exit);
-
+module_usb_driver(ced_driver);
 MODULE_LICENSE("GPL");