Commit c3505f04 authored by Felipe Balbi's avatar Felipe Balbi

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: default avatarFelipe Balbi <balbi@ti.com>
parent 869c5978
...@@ -58,7 +58,7 @@ ep_matches ( ...@@ -58,7 +58,7 @@ ep_matches (
return 0; return 0;
/* only support ep0 for portable CONTROL traffic */ /* 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) if (USB_ENDPOINT_XFER_CONTROL == type)
return 0; return 0;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment