aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/usb/class
diff options
context:
space:
mode:
authorJohan Hovold <jhovold@gmail.com>2011-03-22 06:12:18 -0400
committerGreg Kroah-Hartman <gregkh@suse.de>2011-04-13 19:18:29 -0400
commita2c7b9353e8f782590852052fe2948692020147e (patch)
tree5ee63ea099162b5be0cafdf2a5b2fa5a7905e271 /drivers/usb/class
parent5e9e75f8bd97864d552ec2b8d1a00e2b3012a6b3 (diff)
USB: cdc-acm: remove version information and changelog
Remove driver version and changelog which can be retrieved from git history. Signed-off-by: Johan Hovold <jhovold@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/usb/class')
-rw-r--r--drivers/usb/class/cdc-acm.c32
1 files changed, 2 insertions, 30 deletions
diff --git a/drivers/usb/class/cdc-acm.c b/drivers/usb/class/cdc-acm.c
index 3c0d4b913a89..a693381ed3cc 100644
--- a/drivers/usb/class/cdc-acm.c
+++ b/drivers/usb/class/cdc-acm.c
@@ -12,30 +12,6 @@
12 * 12 *
13 * Sponsored by SuSE 13 * Sponsored by SuSE
14 * 14 *
15 * ChangeLog:
16 * v0.9 - thorough cleaning, URBification, almost a rewrite
17 * v0.10 - some more cleanups
18 * v0.11 - fixed flow control, read error doesn't stop reads
19 * v0.12 - added TIOCM ioctls, added break handling, made struct acm
20 * kmalloced
21 * v0.13 - added termios, added hangup
22 * v0.14 - sized down struct acm
23 * v0.15 - fixed flow control again - characters could be lost
24 * v0.16 - added code for modems with swapped data and control interfaces
25 * v0.17 - added new style probing
26 * v0.18 - fixed new style probing for devices with more configurations
27 * v0.19 - fixed CLOCAL handling (thanks to Richard Shih-Ping Chan)
28 * v0.20 - switched to probing on interface (rather than device) class
29 * v0.21 - revert to probing on device for devices with multiple configs
30 * v0.22 - probe only the control interface. if usbcore doesn't choose the
31 * config we want, sysadmin changes bConfigurationValue in sysfs.
32 * v0.23 - use softirq for rx processing, as needed by tty layer
33 * v0.24 - change probe method to evaluate CDC union descriptor
34 * v0.25 - downstream tasks paralelized to maximize throughput
35 * v0.26 - multiple write urbs, writesize increased
36 */
37
38/*
39 * This program is free software; you can redistribute it and/or modify 15 * This program is free software; you can redistribute it and/or modify
40 * it under the terms of the GNU General Public License as published by 16 * it under the terms of the GNU General Public License as published by
41 * the Free Software Foundation; either version 2 of the License, or 17 * the Free Software Foundation; either version 2 of the License, or
@@ -76,10 +52,7 @@
76 52
77#define ACM_CLOSE_TIMEOUT 15 /* seconds to let writes drain */ 53#define ACM_CLOSE_TIMEOUT 15 /* seconds to let writes drain */
78 54
79/* 55
80 * Version Information
81 */
82#define DRIVER_VERSION "v0.26"
83#define DRIVER_AUTHOR "Armin Fuerst, Pavel Machek, Johannes Erdfelt, Vojtech Pavlik, David Kubicek" 56#define DRIVER_AUTHOR "Armin Fuerst, Pavel Machek, Johannes Erdfelt, Vojtech Pavlik, David Kubicek"
84#define DRIVER_DESC "USB Abstract Control Model driver for USB modems and ISDN adapters" 57#define DRIVER_DESC "USB Abstract Control Model driver for USB modems and ISDN adapters"
85 58
@@ -1736,8 +1709,7 @@ static int __init acm_init(void)
1736 return retval; 1709 return retval;
1737 } 1710 }
1738 1711
1739 printk(KERN_INFO KBUILD_MODNAME ": " DRIVER_VERSION ":" 1712 printk(KERN_INFO KBUILD_MODNAME ": " DRIVER_DESC "\n");
1740 DRIVER_DESC "\n");
1741 1713
1742 return 0; 1714 return 0;
1743} 1715}