Commit 377f13bf authored by Luiz Fernando N. Capitulino's avatar Luiz Fernando N. Capitulino Committed by Greg Kroah-Hartman

USB: aircable: Use usb_endpoint_* functions

Signed-off-by: default avatarLuiz Fernando N. Capitulino <lcapitulino@mandriva.com.br>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent 565402ba
...@@ -305,9 +305,7 @@ static int aircable_probe(struct usb_serial *serial, ...@@ -305,9 +305,7 @@ static int aircable_probe(struct usb_serial *serial,
for (i = 0; i < iface_desc->desc.bNumEndpoints; i++) { for (i = 0; i < iface_desc->desc.bNumEndpoints; i++) {
endpoint = &iface_desc->endpoint[i].desc; endpoint = &iface_desc->endpoint[i].desc;
if (((endpoint->bEndpointAddress & 0x80) == 0x00) && if (usb_endpoint_is_bulk_out(endpoint)) {
((endpoint->bmAttributes & 3) == 0x02)) {
/* we found our bulk out endpoint */
dbg("found bulk out on endpoint %d", i); dbg("found bulk out on endpoint %d", i);
++num_bulk_out; ++num_bulk_out;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment