aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/usb/serial/pl2303.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/usb/serial/pl2303.c')
-rw-r--r--drivers/usb/serial/pl2303.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/drivers/usb/serial/pl2303.c b/drivers/usb/serial/pl2303.c
index f8f4e93e8c0b..165c119bf10e 100644
--- a/drivers/usb/serial/pl2303.c
+++ b/drivers/usb/serial/pl2303.c
@@ -34,7 +34,6 @@
34/* 34/*
35 * Version Information 35 * Version Information
36 */ 36 */
37#define DRIVER_VERSION "v0.12"
38#define DRIVER_DESC "Prolific PL2303 USB to serial adaptor driver" 37#define DRIVER_DESC "Prolific PL2303 USB to serial adaptor driver"
39 38
40static int debug; 39static int debug;
@@ -1176,7 +1175,7 @@ static int __init pl2303_init (void)
1176 retval = usb_register(&pl2303_driver); 1175 retval = usb_register(&pl2303_driver);
1177 if (retval) 1176 if (retval)
1178 goto failed_usb_register; 1177 goto failed_usb_register;
1179 info(DRIVER_DESC " " DRIVER_VERSION); 1178 info(DRIVER_DESC);
1180 return 0; 1179 return 0;
1181failed_usb_register: 1180failed_usb_register:
1182 usb_serial_deregister(&pl2303_device); 1181 usb_serial_deregister(&pl2303_device);
@@ -1196,7 +1195,6 @@ module_init(pl2303_init);
1196module_exit(pl2303_exit); 1195module_exit(pl2303_exit);
1197 1196
1198MODULE_DESCRIPTION(DRIVER_DESC); 1197MODULE_DESCRIPTION(DRIVER_DESC);
1199MODULE_VERSION(DRIVER_VERSION);
1200MODULE_LICENSE("GPL"); 1198MODULE_LICENSE("GPL");
1201 1199
1202module_param(debug, bool, S_IRUGO | S_IWUSR); 1200module_param(debug, bool, S_IRUGO | S_IWUSR);