cp210x.c (ac1d426e825ab5778995f2f6f053ca2e6b45c622) cp210x.c (d4e598f65de351eb66a90889d9ceaaca472fda40)
1/*
2 * Silicon Laboratories CP210x USB to RS232 serial adaptor driver
3 *
4 * Copyright (C) 2005 Craig Shelley (craig@microtron.org.uk)
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License version
8 * 2 as published by the Free Software Foundation.

--- 124 unchanged lines hidden (view full) ---

133static struct usb_serial_driver cp210x_device = {
134 .driver = {
135 .owner = THIS_MODULE,
136 .name = "cp210x",
137 },
138 .usb_driver = &cp210x_driver,
139 .id_table = id_table,
140 .num_ports = 1,
1/*
2 * Silicon Laboratories CP210x USB to RS232 serial adaptor driver
3 *
4 * Copyright (C) 2005 Craig Shelley (craig@microtron.org.uk)
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License version
8 * 2 as published by the Free Software Foundation.

--- 124 unchanged lines hidden (view full) ---

133static struct usb_serial_driver cp210x_device = {
134 .driver = {
135 .owner = THIS_MODULE,
136 .name = "cp210x",
137 },
138 .usb_driver = &cp210x_driver,
139 .id_table = id_table,
140 .num_ports = 1,
141 .bulk_out_size = 256,
141 .open = cp210x_open,
142 .close = cp210x_close,
143 .break_ctl = cp210x_break_ctl,
144 .set_termios = cp210x_set_termios,
145 .tiocmget = cp210x_tiocmget,
146 .tiocmset = cp210x_tiocmset,
147 .attach = cp210x_startup,
148 .disconnect = cp210x_disconnect,

--- 708 unchanged lines hidden ---
142 .open = cp210x_open,
143 .close = cp210x_close,
144 .break_ctl = cp210x_break_ctl,
145 .set_termios = cp210x_set_termios,
146 .tiocmget = cp210x_tiocmget,
147 .tiocmset = cp210x_tiocmset,
148 .attach = cp210x_startup,
149 .disconnect = cp210x_disconnect,

--- 708 unchanged lines hidden ---