diff options
author | Greg Kroah-Hartman <gregkh@suse.de> | 2008-04-16 12:17:38 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2008-04-25 00:16:52 -0400 |
commit | 0ba4034e20abf372dae6c6cabeeeab600acb5889 (patch) | |
tree | 06a0968578ed46e364cf51aa50262b6e9e2bcc2e /drivers/usb/serial/cypress_m8.c | |
parent | 5f760040bcb4cc0498d4c662c4ea305290198ef3 (diff) |
USB: serial: remove unneeded number endpoints settings
The usb-serial core no longer checks these fields so remove them from
all of the individual drivers. They will be removed from the usb-serial
core in a patch later in the series.
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/usb/serial/cypress_m8.c')
-rw-r--r-- | drivers/usb/serial/cypress_m8.c | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/drivers/usb/serial/cypress_m8.c b/drivers/usb/serial/cypress_m8.c index 36f8ef079479..d8304eaf34c4 100644 --- a/drivers/usb/serial/cypress_m8.c +++ b/drivers/usb/serial/cypress_m8.c | |||
@@ -200,10 +200,6 @@ static struct usb_serial_driver cypress_earthmate_device = { | |||
200 | .description = "DeLorme Earthmate USB", | 200 | .description = "DeLorme Earthmate USB", |
201 | .usb_driver = &cypress_driver, | 201 | .usb_driver = &cypress_driver, |
202 | .id_table = id_table_earthmate, | 202 | .id_table = id_table_earthmate, |
203 | .num_interrupt_in = 1, | ||
204 | .num_interrupt_out = 1, | ||
205 | .num_bulk_in = NUM_DONT_CARE, | ||
206 | .num_bulk_out = NUM_DONT_CARE, | ||
207 | .num_ports = 1, | 203 | .num_ports = 1, |
208 | .attach = cypress_earthmate_startup, | 204 | .attach = cypress_earthmate_startup, |
209 | .shutdown = cypress_shutdown, | 205 | .shutdown = cypress_shutdown, |
@@ -230,10 +226,6 @@ static struct usb_serial_driver cypress_hidcom_device = { | |||
230 | .description = "HID->COM RS232 Adapter", | 226 | .description = "HID->COM RS232 Adapter", |
231 | .usb_driver = &cypress_driver, | 227 | .usb_driver = &cypress_driver, |
232 | .id_table = id_table_cyphidcomrs232, | 228 | .id_table = id_table_cyphidcomrs232, |
233 | .num_interrupt_in = 1, | ||
234 | .num_interrupt_out = 1, | ||
235 | .num_bulk_in = NUM_DONT_CARE, | ||
236 | .num_bulk_out = NUM_DONT_CARE, | ||
237 | .num_ports = 1, | 229 | .num_ports = 1, |
238 | .attach = cypress_hidcom_startup, | 230 | .attach = cypress_hidcom_startup, |
239 | .shutdown = cypress_shutdown, | 231 | .shutdown = cypress_shutdown, |
@@ -260,10 +252,6 @@ static struct usb_serial_driver cypress_ca42v2_device = { | |||
260 | .description = "Nokia CA-42 V2 Adapter", | 252 | .description = "Nokia CA-42 V2 Adapter", |
261 | .usb_driver = &cypress_driver, | 253 | .usb_driver = &cypress_driver, |
262 | .id_table = id_table_nokiaca42v2, | 254 | .id_table = id_table_nokiaca42v2, |
263 | .num_interrupt_in = 1, | ||
264 | .num_interrupt_out = 1, | ||
265 | .num_bulk_in = NUM_DONT_CARE, | ||
266 | .num_bulk_out = NUM_DONT_CARE, | ||
267 | .num_ports = 1, | 255 | .num_ports = 1, |
268 | .attach = cypress_ca42v2_startup, | 256 | .attach = cypress_ca42v2_startup, |
269 | .shutdown = cypress_shutdown, | 257 | .shutdown = cypress_shutdown, |