Commit 582f787c authored by Duncan Sands's avatar Duncan Sands Committed by Greg Kroah-Hartman

[PATCH] USB: speedtouch missing __init and __exit

speedtouch: add __init and __exit to the module init/exit routines.
parent 2f465c1e
......@@ -1007,7 +1007,7 @@ static void udsl_usb_disconnect (struct usb_interface *intf)
*
****************************************************************************/
static int udsl_usb_init (void)
static int __init udsl_usb_init (void)
{
int i;
......@@ -1022,7 +1022,7 @@ static int udsl_usb_init (void)
return usb_register (&udsl_usb_driver);
}
static void udsl_usb_cleanup (void)
static void __exit udsl_usb_cleanup (void)
{
/* killing threads */
udsl_atm_sar_stop ();
......
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