diff options
author | Luiz Fernando N. Capitulino <lcapitulino@mandriva.com.br> | 2006-10-26 12:02:58 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2006-12-01 17:23:29 -0500 |
commit | c5dd1f94246acdf6be6796db47efba8b2a93f93e (patch) | |
tree | c2a08e66094f665580a5c8645387c17f57a21e90 /drivers/usb/atm | |
parent | a742e5a7fc5b179e2482b85e875fc99192cead74 (diff) |
USB: speedtch: 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/atm')
-rw-r--r-- | drivers/usb/atm/speedtch.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/usb/atm/speedtch.c b/drivers/usb/atm/speedtch.c index c870c804470f..a823486495c3 100644 --- a/drivers/usb/atm/speedtch.c +++ b/drivers/usb/atm/speedtch.c | |||
@@ -834,8 +834,8 @@ static int speedtch_bind(struct usbatm_data *usbatm, | |||
834 | const struct usb_endpoint_descriptor *endpoint_desc = &desc->endpoint[i].desc; | 834 | const struct usb_endpoint_descriptor *endpoint_desc = &desc->endpoint[i].desc; |
835 | 835 | ||
836 | if ((endpoint_desc->bEndpointAddress == target_address)) { | 836 | if ((endpoint_desc->bEndpointAddress == target_address)) { |
837 | use_isoc = (endpoint_desc->bmAttributes & USB_ENDPOINT_XFERTYPE_MASK) == | 837 | use_isoc = |
838 | USB_ENDPOINT_XFER_ISOC; | 838 | usb_endpoint_xfer_isoc(endpoint_desc); |
839 | break; | 839 | break; |
840 | } | 840 | } |
841 | } | 841 | } |