diff options
author | make shi <b15407@freescale.com> | 2012-10-12 17:01:33 +0800 |
---|---|---|
committer | make shi <b15407@freescale.com> | 2012-10-12 17:41:34 +0800 |
commit | 244ac9c93dd7f852f05c76d7a4ece266b1d69a9f (patch) | |
tree | f6f322755493bade2019bd13cfeb4efbcea4a786 /drivers/usb | |
parent | 3331fe12576eb3b8a06749eb897eb48e6ecca0a6 (diff) |
ENGR00229354 Mx6 USB device: fix wrong handle for invalid USB_FEATURE requests
There is a bug udc driver handle invalid USB_FEATURE requests in current bsp.
The invalid USB_FEATURE request will be handled as a valid USB_FEATURE request.
We should set protocol stall on ep0 to handle invalid USB_FEATURE requests.
Signed-off-by: make shi <b15407@freescale.com>
Diffstat (limited to 'drivers/usb')
-rwxr-xr-x | drivers/usb/gadget/arcotg_udc.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/drivers/usb/gadget/arcotg_udc.c b/drivers/usb/gadget/arcotg_udc.c index 75fe978a8e01..484e62e79ba9 100755 --- a/drivers/usb/gadget/arcotg_udc.c +++ b/drivers/usb/gadget/arcotg_udc.c @@ -1695,6 +1695,10 @@ static void setup_received_irq(struct fsl_udc *udc, else if (setup->bRequest == USB_DEVICE_A_ALT_HNP_SUPPORT) udc->gadget.a_alt_hnp_support = 1; + else + break; + } else { + break; } rc = 0; } else |