Commit 7dcb582c authored by Mariusz Kozlowski's avatar Mariusz Kozlowski Committed by Greg Kroah-Hartman

Staging: comedi: usbduxfast: annotate __init and __exit functions

This patch adds __init and __exit annotations to proper functions in the
usbduxfast driver.
Signed-off-by: default avatarMariusz Kozlowski <m.kozlowski@tuxland.pl>
Cc: Bernd Porr <BerndPorr@f2s.com>
Cc: David Schleef <ds@schleef.org>
Cc: Frank Mori Hess <fmhess@users.sourceforge.net>
Cc: Ian Abbott <abbotti@mev.co.uk>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent 4e8ad0dc
...@@ -1826,7 +1826,7 @@ static comedi_driver driver_usbduxfast = { ...@@ -1826,7 +1826,7 @@ static comedi_driver driver_usbduxfast = {
.detach = usbduxfast_detach .detach = usbduxfast_detach
}; };
static void init_usb_devices(void) static void __init init_usb_devices(void)
{ {
int index; int index;
...@@ -1875,7 +1875,7 @@ static struct usb_driver usbduxfastsub_driver = { ...@@ -1875,7 +1875,7 @@ static struct usb_driver usbduxfastsub_driver = {
* Can't use the nice macro as I have also to initialise the USB subsystem: * Can't use the nice macro as I have also to initialise the USB subsystem:
* registering the usb-system _and_ the comedi-driver * registering the usb-system _and_ the comedi-driver
*/ */
static int init_usbduxfast(void) static int __init init_usbduxfast(void)
{ {
printk(KERN_INFO printk(KERN_INFO
KBUILD_MODNAME ": " DRIVER_VERSION ":" DRIVER_DESC "\n"); KBUILD_MODNAME ": " DRIVER_VERSION ":" DRIVER_DESC "\n");
...@@ -1888,7 +1888,7 @@ static int init_usbduxfast(void) ...@@ -1888,7 +1888,7 @@ static int init_usbduxfast(void)
/* /*
* deregistering the comedi driver and the usb-subsystem * deregistering the comedi driver and the usb-subsystem
*/ */
static void exit_usbduxfast(void) static void __exit exit_usbduxfast(void)
{ {
comedi_driver_unregister(&driver_usbduxfast); comedi_driver_unregister(&driver_usbduxfast);
usb_deregister(&usbduxfastsub_driver); usb_deregister(&usbduxfastsub_driver);
......
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