]> git.hungrycats.org Git - linux/commitdiff
[PATCH] USB speedtouch: bump the version number
authorDuncan Sands <baldrick@free.fr>
Wed, 14 Apr 2004 02:51:12 +0000 (19:51 -0700)
committerGreg Kroah-Hartman <greg@kroah.com>
Wed, 14 Apr 2004 02:51:12 +0000 (19:51 -0700)
Hi Greg, this patch bumps the speedtouch driver's version number.
It also adds the version number to the module description, so people
can see it with modinfo.  I also added a MODULE_VERSION line (why?
because it was there...)  The patch is against your 2.6 kernel tree.

drivers/usb/misc/speedtch.c

index 11cb92aeae879fc04302e19f3af58fb3eb4dfb21..f9609d0604108b25576239bdab1fde94e8b900dd 100644 (file)
@@ -106,8 +106,8 @@ static int udsl_print_packet (const unsigned char *data, int len);
 #endif
 
 #define DRIVER_AUTHOR  "Johan Verrept, Duncan Sands <duncan.sands@free.fr>"
-#define DRIVER_DESC    "Alcatel SpeedTouch USB driver"
-#define DRIVER_VERSION "1.7"
+#define DRIVER_VERSION "1.8"
+#define DRIVER_DESC    "Alcatel SpeedTouch USB driver version " DRIVER_VERSION
 
 static const char udsl_driver_name [] = "speedtch";
 
@@ -1347,6 +1347,7 @@ module_exit (udsl_usb_cleanup);
 MODULE_AUTHOR (DRIVER_AUTHOR);
 MODULE_DESCRIPTION (DRIVER_DESC);
 MODULE_LICENSE ("GPL");
+MODULE_VERSION (DRIVER_VERSION);
 
 
 /************