USB: yealink: Use usb_endpoint_* functions
Signed-off-by: Luiz Fernando N. Capitulino <lcapitulino@mandriva.com.br> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
parent
0472074748
commit
6f7cd44162
1 changed files with 2 additions and 4 deletions
|
@ -859,10 +859,8 @@ static int usb_probe(struct usb_interface *intf, const struct usb_device_id *id)
|
||||||
|
|
||||||
interface = intf->cur_altsetting;
|
interface = intf->cur_altsetting;
|
||||||
endpoint = &interface->endpoint[0].desc;
|
endpoint = &interface->endpoint[0].desc;
|
||||||
if (!(endpoint->bEndpointAddress & USB_DIR_IN))
|
if (!usb_endpoint_is_int_in(endpoint))
|
||||||
return -EIO;
|
return -ENODEV;
|
||||||
if ((endpoint->bmAttributes & USB_ENDPOINT_XFERTYPE_MASK) != USB_ENDPOINT_XFER_INT)
|
|
||||||
return -EIO;
|
|
||||||
|
|
||||||
yld = kzalloc(sizeof(struct yealink_dev), GFP_KERNEL);
|
yld = kzalloc(sizeof(struct yealink_dev), GFP_KERNEL);
|
||||||
if (!yld)
|
if (!yld)
|
||||||
|
|
Loading…
Reference in a new issue