Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 10815
b: refs/heads/master
c: 17a882f
h: refs/heads/master
i:
  10813: 3e247a8
  10811: 830ebce
  10807: 84392a9
  10799: 65334af
  10783: ffc12a2
  10751: f249ade
v: v3
  • Loading branch information
Greg Kroah-Hartman committed Oct 28, 2005
1 parent e9b192c commit 9498aaf
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 10 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 269bda1c123c7caf88e1deb2264f9086f0344192
refs/heads/master: 17a882fc0c91477b2582a6dfd4ca93ae7eb58cd3
4 changes: 1 addition & 3 deletions trunk/drivers/usb/serial/pl2303.c
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@
/*
* Version Information
*/
#define DRIVER_VERSION "v0.12"
#define DRIVER_DESC "Prolific PL2303 USB to serial adaptor driver"

static int debug;
Expand Down Expand Up @@ -1176,7 +1175,7 @@ static int __init pl2303_init (void)
retval = usb_register(&pl2303_driver);
if (retval)
goto failed_usb_register;
info(DRIVER_DESC " " DRIVER_VERSION);
info(DRIVER_DESC);
return 0;
failed_usb_register:
usb_serial_deregister(&pl2303_device);
Expand All @@ -1196,7 +1195,6 @@ module_init(pl2303_init);
module_exit(pl2303_exit);

MODULE_DESCRIPTION(DRIVER_DESC);
MODULE_VERSION(DRIVER_VERSION);
MODULE_LICENSE("GPL");

module_param(debug, bool, S_IRUGO | S_IWUSR);
Expand Down
6 changes: 2 additions & 4 deletions trunk/drivers/usb/serial/usb-serial.c
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@
/*
* Version Information
*/
#define DRIVER_VERSION "v2.0"
#define DRIVER_AUTHOR "Greg Kroah-Hartman, greg@kroah.com, http://www.kroah.com/linux/"
#define DRIVER_DESC "USB Serial Driver core"

Expand Down Expand Up @@ -406,7 +405,7 @@ static int serial_read_proc (char *page, char **start, off_t off, int count, int
char tmp[40];

dbg("%s", __FUNCTION__);
length += sprintf (page, "usbserinfo:1.0 driver:%s\n", DRIVER_VERSION);
length += sprintf (page, "usbserinfo:1.0 driver:2.0\n");
for (i = 0; i < SERIAL_TTY_MINORS && length < PAGE_SIZE; ++i) {
serial = usb_serial_get_by_index(i);
if (serial == NULL)
Expand Down Expand Up @@ -1025,7 +1024,7 @@ static int __init usb_serial_init(void)
goto exit_generic;
}

info(DRIVER_DESC " " DRIVER_VERSION);
info(DRIVER_DESC);

return result;

Expand Down Expand Up @@ -1127,7 +1126,6 @@ EXPORT_SYMBOL_GPL(usb_serial_port_softint);
/* Module information */
MODULE_AUTHOR( DRIVER_AUTHOR );
MODULE_DESCRIPTION( DRIVER_DESC );
MODULE_VERSION( DRIVER_VERSION );
MODULE_LICENSE("GPL");

module_param(debug, bool, S_IRUGO | S_IWUSR);
Expand Down
3 changes: 1 addition & 2 deletions trunk/drivers/usb/serial/visor.c
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@
/*
* Version Information
*/
#define DRIVER_VERSION "v2.1"
#define DRIVER_AUTHOR "Greg Kroah-Hartman <greg@kroah.com>"
#define DRIVER_DESC "USB HandSpring Visor / Palm OS driver"

Expand Down Expand Up @@ -1002,7 +1001,7 @@ static int __init visor_init (void)
retval = usb_register(&visor_driver);
if (retval)
goto failed_usb_register;
info(DRIVER_DESC " " DRIVER_VERSION);
info(DRIVER_DESC);

return 0;
failed_usb_register:
Expand Down

0 comments on commit 9498aaf

Please sign in to comment.