diff options
| author | Gerard Cauvy <[email protected]> | 2012-03-16 16:20:10 +0200 |
|---|---|---|
| committer | Felipe Balbi <[email protected]> | 2012-04-10 19:11:31 +0300 |
| commit | ecb07797ffc1c2aaa2e58d1ba1b5deea44ea5b9e (patch) | |
| tree | 7b41db1d84f7f0a486ace971f1345a6781b9bafc | |
| 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: [email protected]
Signed-off-by: Gerard Cauvy <[email protected]>
Signed-off-by: Felipe Balbi <[email protected]>
| -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; |