diff options
author | Luiz Fernando N. Capitulino <lcapitulino@mandriva.com.br> | 2006-10-26 12:02:45 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2006-12-01 17:23:27 -0500 |
commit | 377f13bf95b64cf5fb0fad0bf2b94106ad868562 (patch) | |
tree | 69305393691c3f66107175f64caa4124671e0097 /drivers/usb/serial | |
parent | 565402baee99096da4d79209e450fe42d379a0ca (diff) |
USB: aircable: Use usb_endpoint_* functions
Signed-off-by: Luiz Fernando N. Capitulino <lcapitulino@mandriva.com.br>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/usb/serial')
-rw-r--r-- | drivers/usb/serial/aircable.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/drivers/usb/serial/aircable.c b/drivers/usb/serial/aircable.c index 812275509137..8554c1a7b9fc 100644 --- a/drivers/usb/serial/aircable.c +++ b/drivers/usb/serial/aircable.c | |||
@@ -305,9 +305,7 @@ static int aircable_probe(struct usb_serial *serial, | |||
305 | 305 | ||
306 | for (i = 0; i < iface_desc->desc.bNumEndpoints; i++) { | 306 | for (i = 0; i < iface_desc->desc.bNumEndpoints; i++) { |
307 | endpoint = &iface_desc->endpoint[i].desc; | 307 | endpoint = &iface_desc->endpoint[i].desc; |
308 | if (((endpoint->bEndpointAddress & 0x80) == 0x00) && | 308 | if (usb_endpoint_is_bulk_out(endpoint)) { |
309 | ((endpoint->bmAttributes & 3) == 0x02)) { | ||
310 | /* we found our bulk out endpoint */ | ||
311 | dbg("found bulk out on endpoint %d", i); | 309 | dbg("found bulk out on endpoint %d", i); |
312 | ++num_bulk_out; | 310 | ++num_bulk_out; |
313 | } | 311 | } |