aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/usb/net
diff options
context:
space:
mode:
authorLuiz Fernando N. Capitulino <lcapitulino@mandriva.com.br>2006-10-26 13:02:47 -0300
committerGreg Kroah-Hartman <gregkh@suse.de>2006-12-01 14:23:27 -0800
commitb333d5bfd7d3791f91c678f3f5033c82b1e2b46f (patch)
tree84fde3c74fa4b158f1846d18692183b63f6ab2be /drivers/usb/net
parentUSB: appledisplay: Use usb_endpoint_* functions (diff)
downloadlinux-dev-b333d5bfd7d3791f91c678f3f5033c82b1e2b46f.tar.xz
linux-dev-b333d5bfd7d3791f91c678f3f5033c82b1e2b46f.zip
USB: cdc_ether: 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/usb/net')
-rw-r--r--drivers/usb/net/cdc_ether.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/usb/net/cdc_ether.c b/drivers/usb/net/cdc_ether.c
index f6971b88349d..44a91547146e 100644
--- a/drivers/usb/net/cdc_ether.c
+++ b/drivers/usb/net/cdc_ether.c
@@ -200,8 +200,7 @@ next_desc:
dev->status = &info->control->cur_altsetting->endpoint [0];
desc = &dev->status->desc;
- if (desc->bmAttributes != USB_ENDPOINT_XFER_INT
- || !(desc->bEndpointAddress & USB_DIR_IN)
+ if (!usb_endpoint_is_int_in(desc)
|| (le16_to_cpu(desc->wMaxPacketSize)
< sizeof(struct usb_cdc_notification))
|| !desc->bInterval) {