diff options
author | Felipe Balbi <balbi@ti.com> | 2011-08-30 08:48:08 -0400 |
---|---|---|
committer | Felipe Balbi <balbi@ti.com> | 2011-09-09 06:02:17 -0400 |
commit | 0b7836a9eb32f626ffd3fe3045e8c618cb8ed965 (patch) | |
tree | 4b78a357ffbebab238e182a1de12efb8cf9b6e05 /drivers/usb/dwc3/gadget.c | |
parent | 76cb323f80ac32833109e2c089842be2b99d8d2b (diff) |
usb: dwc3: drop EP0_STALL state
Whenever we issue a Set Stall command on EP0,
the state machine will be restarted and Stall
is cleared automatically, when core receives
the next SETUP packet.
There's no need to track that EP0_STALL state.
Signed-off-by: Felipe Balbi <balbi@ti.com>
Diffstat (limited to 'drivers/usb/dwc3/gadget.c')
-rw-r--r-- | drivers/usb/dwc3/gadget.c | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/drivers/usb/dwc3/gadget.c b/drivers/usb/dwc3/gadget.c index b5d95f8329f..0c934a195de 100644 --- a/drivers/usb/dwc3/gadget.c +++ b/drivers/usb/dwc3/gadget.c | |||
@@ -872,8 +872,14 @@ int __dwc3_gadget_ep_set_halt(struct dwc3_ep *dep, int value) | |||
872 | memset(¶ms, 0x00, sizeof(params)); | 872 | memset(¶ms, 0x00, sizeof(params)); |
873 | 873 | ||
874 | if (value) { | 874 | if (value) { |
875 | if (dep->number == 0 || dep->number == 1) | 875 | if (dep->number == 0 || dep->number == 1) { |
876 | dwc->ep0state = EP0_STALL; | 876 | /* |
877 | * Whenever EP0 is stalled, we will restart | ||
878 | * the state machine, thus moving back to | ||
879 | * Setup Phase | ||
880 | */ | ||
881 | dwc->ep0state = EP0_SETUP_PHASE; | ||
882 | } | ||
877 | 883 | ||
878 | ret = dwc3_send_gadget_ep_cmd(dwc, dep->number, | 884 | ret = dwc3_send_gadget_ep_cmd(dwc, dep->number, |
879 | DWC3_DEPCMD_SETSTALL, ¶ms); | 885 | DWC3_DEPCMD_SETSTALL, ¶ms); |