Commit 83a3154c authored by Duncan Sands's avatar Duncan Sands Committed by Greg Kroah-Hartman

[PATCH] USB speedtouch: bump the version number

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