speedtch usbatm2.c,1.11,1.12

Duncan Sands duncan at infradead.org
Fri Jan 28 05:13:03 EST 2005


Update of /home/cvs/speedtch
In directory phoenix.infradead.org:/tmp/cvs-serv16039

Modified Files:
	usbatm2.c 
Log Message:
Add a module_exit routine - since otherwise the module can't be unloaded.
Pointed out by Roman.


Index: usbatm2.c
===================================================================
RCS file: /home/cvs/speedtch/usbatm2.c,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- usbatm2.c	25 Jan 2005 08:18:09 -0000	1.11
+++ usbatm2.c	28 Jan 2005 10:13:00 -0000	1.12
@@ -1337,6 +1337,11 @@
 }
 module_init(udsl_usb_init);
 
+static void __exit udsl_usb_exit(void)
+{
+}
+module_exit(udsl_usb_exit);
+
 MODULE_AUTHOR(DRIVER_AUTHOR);
 MODULE_DESCRIPTION(DRIVER_DESC);
 MODULE_LICENSE("GPL");




More information about the Usbatm-commits mailing list