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/whiteheat.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/whiteheat.c')
-rw-r--r-- | drivers/usb/serial/whiteheat.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/drivers/usb/serial/whiteheat.c b/drivers/usb/serial/whiteheat.c index 38726ef3132b..c5af57be62f4 100644 --- a/drivers/usb/serial/whiteheat.c +++ b/drivers/usb/serial/whiteheat.c | |||
@@ -164,9 +164,6 @@ static struct usb_serial_driver whiteheat_fake_device = { | |||
164 | .description = "Connect Tech - WhiteHEAT - (prerenumeration)", | 164 | .description = "Connect Tech - WhiteHEAT - (prerenumeration)", |
165 | .usb_driver = &whiteheat_driver, | 165 | .usb_driver = &whiteheat_driver, |
166 | .id_table = id_table_prerenumeration, | 166 | .id_table = id_table_prerenumeration, |
167 | .num_interrupt_in = NUM_DONT_CARE, | ||
168 | .num_bulk_in = NUM_DONT_CARE, | ||
169 | .num_bulk_out = NUM_DONT_CARE, | ||
170 | .num_ports = 1, | 167 | .num_ports = 1, |
171 | .probe = whiteheat_firmware_download, | 168 | .probe = whiteheat_firmware_download, |
172 | .attach = whiteheat_firmware_attach, | 169 | .attach = whiteheat_firmware_attach, |
@@ -180,9 +177,6 @@ static struct usb_serial_driver whiteheat_device = { | |||
180 | .description = "Connect Tech - WhiteHEAT", | 177 | .description = "Connect Tech - WhiteHEAT", |
181 | .usb_driver = &whiteheat_driver, | 178 | .usb_driver = &whiteheat_driver, |
182 | .id_table = id_table_std, | 179 | .id_table = id_table_std, |
183 | .num_interrupt_in = NUM_DONT_CARE, | ||
184 | .num_bulk_in = NUM_DONT_CARE, | ||
185 | .num_bulk_out = NUM_DONT_CARE, | ||
186 | .num_ports = 4, | 180 | .num_ports = 4, |
187 | .attach = whiteheat_attach, | 181 | .attach = whiteheat_attach, |
188 | .shutdown = whiteheat_shutdown, | 182 | .shutdown = whiteheat_shutdown, |