diff options
author | Felipe Balbi <balbi@ti.com> | 2013-11-08 12:39:29 -0600 |
---|---|---|
committer | Felipe Balbi <balbi@ti.com> | 2013-11-26 10:58:16 -0600 |
commit | c3505f04582f3fee1452613c7d36a1811e524ab4 (patch) | |
tree | 7e83ec39d22a697240db1db7f0888bb5c70c1b0e /drivers/usb/gadget | |
parent | 869c597829817af4b9f85c5e4181c622918dc781 (diff) | |
download | op-kernel-dev-c3505f04582f3fee1452613c7d36a1811e524ab4.zip op-kernel-dev-c3505f04582f3fee1452613c7d36a1811e524ab4.tar.gz |
usb: gadget: epautoconf: switch over to usb_endpoint_type()
we have a helper to fetch endpoint type out of
a descriptor, let's use it.
Signed-off-by: Felipe Balbi <balbi@ti.com>
Diffstat (limited to 'drivers/usb/gadget')
-rw-r--r-- | drivers/usb/gadget/epautoconf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/usb/gadget/epautoconf.c b/drivers/usb/gadget/epautoconf.c index a777f7b..feaaa7b 100644 --- a/drivers/usb/gadget/epautoconf.c +++ b/drivers/usb/gadget/epautoconf.c @@ -58,7 +58,7 @@ ep_matches ( return 0; /* only support ep0 for portable CONTROL traffic */ - type = desc->bmAttributes & USB_ENDPOINT_XFERTYPE_MASK; + type = usb_endpoint_type(desc); if (USB_ENDPOINT_XFER_CONTROL == type) return 0; |