diff options
author | Luiz Fernando N. Capitulino <lcapitulino@mandriva.com.br> | 2006-09-27 14:58:53 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2006-09-27 14:58:53 -0400 |
commit | ee709a3c613d9c458323e04dd69c8eb233d45199 (patch) | |
tree | 8c79a5a10dd65585134a935c6e99dc9ac9ebad9d | |
parent | 97b107ca391c0411e6c5fc1e26585cd8285696f9 (diff) |
USB: acecad: Use usb_endpoint_* functions.
Signed-off-by: Luiz Fernando N. Capitulino <lcapitulino@mandriva.com.br>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
-rw-r--r-- | drivers/usb/input/acecad.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/drivers/usb/input/acecad.c b/drivers/usb/input/acecad.c index 18c10e150ef3..d83603ba40ae 100644 --- a/drivers/usb/input/acecad.c +++ b/drivers/usb/input/acecad.c | |||
@@ -141,10 +141,7 @@ static int usb_acecad_probe(struct usb_interface *intf, const struct usb_device_ | |||
141 | 141 | ||
142 | endpoint = &interface->endpoint[0].desc; | 142 | endpoint = &interface->endpoint[0].desc; |
143 | 143 | ||
144 | if (!(endpoint->bEndpointAddress & 0x80)) | 144 | if (!usb_endpoint_is_int_in(endpoint)) |
145 | return -ENODEV; | ||
146 | |||
147 | if ((endpoint->bmAttributes & 3) != 3) | ||
148 | return -ENODEV; | 145 | return -ENODEV; |
149 | 146 | ||
150 | pipe = usb_rcvintpipe(dev, endpoint->bEndpointAddress); | 147 | pipe = usb_rcvintpipe(dev, endpoint->bEndpointAddress); |