From: Luiz Fernando N. Capitulino Date: Thu, 26 Oct 2006 16:02:48 +0000 (-0300) Subject: USB: cdc-acm: Use usb_endpoint_* functions X-Git-Tag: v3.12-rc1~31383^2~47^2~573^2~91 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=45aea704d12d05f06b3f82974aa1438460f42398;p=kernel%2Fkernel-generic.git USB: cdc-acm: Use usb_endpoint_* functions Signed-off-by: Luiz Fernando N. Capitulino Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/usb/class/cdc-acm.c b/drivers/usb/class/cdc-acm.c index 9a9012f..ec3438d 100644 --- a/drivers/usb/class/cdc-acm.c +++ b/drivers/usb/class/cdc-acm.c @@ -892,7 +892,7 @@ skip_normal_probe: /* workaround for switched endpoints */ - if ((epread->bEndpointAddress & USB_DIR_IN) != USB_DIR_IN) { + if (!usb_endpoint_dir_in(epread)) { /* descriptors are swapped */ struct usb_endpoint_descriptor *t; dev_dbg(&intf->dev,"The data interface has switched endpoints");