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/visor.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/visor.c')
-rw-r--r-- | drivers/usb/serial/visor.c | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/drivers/usb/serial/visor.c b/drivers/usb/serial/visor.c index c2b01f7c3197..f2d59b06c364 100644 --- a/drivers/usb/serial/visor.c +++ b/drivers/usb/serial/visor.c | |||
@@ -189,9 +189,6 @@ static struct usb_serial_driver handspring_device = { | |||
189 | .description = "Handspring Visor / Palm OS", | 189 | .description = "Handspring Visor / Palm OS", |
190 | .usb_driver = &visor_driver, | 190 | .usb_driver = &visor_driver, |
191 | .id_table = id_table, | 191 | .id_table = id_table, |
192 | .num_interrupt_in = NUM_DONT_CARE, | ||
193 | .num_bulk_in = 2, | ||
194 | .num_bulk_out = NUM_DONT_CARE, | ||
195 | .num_ports = 2, | 192 | .num_ports = 2, |
196 | .open = visor_open, | 193 | .open = visor_open, |
197 | .close = visor_close, | 194 | .close = visor_close, |
@@ -219,9 +216,6 @@ static struct usb_serial_driver clie_5_device = { | |||
219 | .description = "Sony Clie 5.0", | 216 | .description = "Sony Clie 5.0", |
220 | .usb_driver = &visor_driver, | 217 | .usb_driver = &visor_driver, |
221 | .id_table = clie_id_5_table, | 218 | .id_table = clie_id_5_table, |
222 | .num_interrupt_in = NUM_DONT_CARE, | ||
223 | .num_bulk_in = 2, | ||
224 | .num_bulk_out = 2, | ||
225 | .num_ports = 2, | 219 | .num_ports = 2, |
226 | .open = visor_open, | 220 | .open = visor_open, |
227 | .close = visor_close, | 221 | .close = visor_close, |
@@ -249,9 +243,6 @@ static struct usb_serial_driver clie_3_5_device = { | |||
249 | .description = "Sony Clie 3.5", | 243 | .description = "Sony Clie 3.5", |
250 | .usb_driver = &visor_driver, | 244 | .usb_driver = &visor_driver, |
251 | .id_table = clie_id_3_5_table, | 245 | .id_table = clie_id_3_5_table, |
252 | .num_interrupt_in = 0, | ||
253 | .num_bulk_in = 1, | ||
254 | .num_bulk_out = 1, | ||
255 | .num_ports = 1, | 246 | .num_ports = 1, |
256 | .open = visor_open, | 247 | .open = visor_open, |
257 | .close = visor_close, | 248 | .close = visor_close, |