From 5aa475c14575d225e55996ffb016a78120d3ba7e Mon Sep 17 00:00:00 2001 From: "Luiz Fernando N. Capitulino" Date: Thu, 26 Oct 2006 13:02:55 -0300 Subject: [PATCH] --- yaml --- r: 41253 b: refs/heads/master c: 66722a194ef96a09ac12d0fe2f9e206f86c29c9f h: refs/heads/master i: 41251: 9be7126c3b66b91ff5db53d4990ac1836d9d6fa3 v: v3 --- [refs] | 2 +- trunk/drivers/usb/storage/onetouch.c | 5 +---- 2 files changed, 2 insertions(+), 5 deletions(-) diff --git a/[refs] b/[refs] index 28e5afc3f87f..d9009020b534 100644 --- a/[refs] +++ b/[refs] @@ -1,2 +1,2 @@ --- -refs/heads/master: 240661c55646401df64411e04ba5833c411c42bc +refs/heads/master: 66722a194ef96a09ac12d0fe2f9e206f86c29c9f diff --git a/trunk/drivers/usb/storage/onetouch.c b/trunk/drivers/usb/storage/onetouch.c index 3baf448e300d..3a158d58441f 100644 --- a/trunk/drivers/usb/storage/onetouch.c +++ b/trunk/drivers/usb/storage/onetouch.c @@ -142,10 +142,7 @@ int onetouch_connect_input(struct us_data *ss) return -ENODEV; endpoint = &interface->endpoint[2].desc; - if (!(endpoint->bEndpointAddress & USB_DIR_IN)) - return -ENODEV; - if ((endpoint->bmAttributes & USB_ENDPOINT_XFERTYPE_MASK) - != USB_ENDPOINT_XFER_INT) + if (!usb_endpoint_is_int_in(endpoint)) return -ENODEV; pipe = usb_rcvintpipe(udev, endpoint->bEndpointAddress);