cp210x.c (d4e598f65de351eb66a90889d9ceaaca472fda40) cp210x.c (aea006b93a59864473866e4b1bdb51deea593798)
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_in_size = 256,
141 .bulk_out_size = 256,
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,

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

--- 709 unchanged lines hidden ---