diff options
Diffstat (limited to 'drivers/usb/serial/aircable.c')
-rw-r--r-- | drivers/usb/serial/aircable.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/drivers/usb/serial/aircable.c b/drivers/usb/serial/aircable.c index 6e320cec397d..80a9845cd93f 100644 --- a/drivers/usb/serial/aircable.c +++ b/drivers/usb/serial/aircable.c | |||
@@ -10,9 +10,9 @@ | |||
10 | * | 10 | * |
11 | * The device works as an standard CDC device, it has 2 interfaces, the first | 11 | * The device works as an standard CDC device, it has 2 interfaces, the first |
12 | * one is for firmware access and the second is the serial one. | 12 | * one is for firmware access and the second is the serial one. |
13 | * The protocol is very simply, there are two posibilities reading or writing. | 13 | * The protocol is very simply, there are two possibilities reading or writing. |
14 | * When writing the first urb must have a Header that starts with 0x20 0x29 the | 14 | * When writing the first urb must have a Header that starts with 0x20 0x29 the |
15 | * next two bytes must say how much data will be sended. | 15 | * next two bytes must say how much data will be sent. |
16 | * When reading the process is almost equal except that the header starts with | 16 | * When reading the process is almost equal except that the header starts with |
17 | * 0x00 0x20. | 17 | * 0x00 0x20. |
18 | * | 18 | * |
@@ -31,15 +31,15 @@ | |||
31 | * | 31 | * |
32 | * The driver registers himself with the USB-serial core and the USB Core. I had | 32 | * The driver registers himself with the USB-serial core and the USB Core. I had |
33 | * to implement a probe function against USB-serial, because other way, the | 33 | * to implement a probe function against USB-serial, because other way, the |
34 | * driver was attaching himself to both interfaces. I have tryed with different | 34 | * driver was attaching himself to both interfaces. I have tried with different |
35 | * configurations of usb_serial_driver with out exit, only the probe function | 35 | * configurations of usb_serial_driver with out exit, only the probe function |
36 | * could handle this correctly. | 36 | * could handle this correctly. |
37 | * | 37 | * |
38 | * I have taken some info from a Greg Kroah-Hartman article: | 38 | * I have taken some info from a Greg Kroah-Hartman article: |
39 | * http://www.linuxjournal.com/article/6573 | 39 | * http://www.linuxjournal.com/article/6573 |
40 | * And from Linux Device Driver Kit CD, which is a great work, the authors taken | 40 | * And from Linux Device Driver Kit CD, which is a great work, the authors taken |
41 | * the work to recompile lots of information an knowladge in drivers development | 41 | * the work to recompile lots of information an knowledge in drivers development |
42 | * and made it all avaible inside a cd. | 42 | * and made it all available inside a cd. |
43 | * URL: http://kernel.org/pub/linux/kernel/people/gregkh/ddk/ | 43 | * URL: http://kernel.org/pub/linux/kernel/people/gregkh/ddk/ |
44 | * | 44 | * |
45 | */ | 45 | */ |