diff options
author | Gerard Cauvy <g-cauvy1@ti.com> | 2012-03-16 16:20:10 +0200 |
---|---|---|
committer | Felipe Balbi <balbi@ti.com> | 2012-04-10 19:11:31 +0300 |
commit | ecb07797ffc1c2aaa2e58d1ba1b5deea44ea5b9e (patch) | |
tree | 7b41db1d84f7f0a486ace971f1345a6781b9bafc /drivers | |
parent | cd423dd3634a5232a3019eb372b144619a61cd16 (diff) |
usb: dwc3: ep0: add a default case for SetFeature command
Without this default case returning an error,
thus replying with a stall, we would fail
USB30CV TD 9.11 Bad Feature test case.
Cc: stable@vger.kernel.org
Signed-off-by: Gerard Cauvy <g-cauvy1@ti.com>
Signed-off-by: Felipe Balbi <balbi@ti.com>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/usb/dwc3/ep0.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/usb/dwc3/ep0.c b/drivers/usb/dwc3/ep0.c index da43131be0e7..3584a169886f 100644 --- a/drivers/usb/dwc3/ep0.c +++ b/drivers/usb/dwc3/ep0.c @@ -353,6 +353,9 @@ static int dwc3_ep0_handle_feature(struct dwc3 *dwc, dwc->test_mode_nr = wIndex >> 8; dwc->test_mode = true; + break; + default: + return -EINVAL; } break; |