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 | 60ca126c9589e3f4bcf81db9762dca82946cd2ba (patch) | |
tree | e2635271a3257c5141456bbc8f930ab3ef74f143 /drivers | |
parent | 96723199e00c4f27fecd8f43e1367c5f25b39a27 (diff) |
USB: powermate: 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')
-rw-r--r-- | drivers/usb/input/powermate.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/drivers/usb/input/powermate.c b/drivers/usb/input/powermate.c index b3c0d0c3eae9..f0f8db6810a2 100644 --- a/drivers/usb/input/powermate.c +++ b/drivers/usb/input/powermate.c | |||
@@ -313,9 +313,7 @@ static int powermate_probe(struct usb_interface *intf, const struct usb_device_i | |||
313 | 313 | ||
314 | interface = intf->cur_altsetting; | 314 | interface = intf->cur_altsetting; |
315 | endpoint = &interface->endpoint[0].desc; | 315 | endpoint = &interface->endpoint[0].desc; |
316 | if (!(endpoint->bEndpointAddress & 0x80)) | 316 | if (!usb_endpoint_is_int_in(endpoint)) |
317 | return -EIO; | ||
318 | if ((endpoint->bmAttributes & 3) != 3) | ||
319 | return -EIO; | 317 | return -EIO; |
320 | 318 | ||
321 | usb_control_msg(udev, usb_sndctrlpipe(udev, 0), | 319 | usb_control_msg(udev, usb_sndctrlpipe(udev, 0), |