commit 68d3e66 (usb: dwc3: ep0: fix for possible early
delayed_status) added handling for early delayed status,
but the current code only works because so far delayed
status will always be on the IN direction.

This patch makes the code more robust by making sure that
we can handle all directions properly.

Signed-off-by: Felipe Balbi <ba...@ti.com>
---
 drivers/usb/dwc3/ep0.c | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/drivers/usb/dwc3/ep0.c b/drivers/usb/dwc3/ep0.c
index 3936c64..3f2c698 100644
--- a/drivers/usb/dwc3/ep0.c
+++ b/drivers/usb/dwc3/ep0.c
@@ -164,10 +164,13 @@ static int __dwc3_gadget_ep0_queue(struct dwc3_ep *dep,
         * handle it here.
         */
        if (dwc->delayed_status) {
+               unsigned        direction;
+
+               direction = !dwc->ep0_expect_in;
                dwc->delayed_status = false;
 
                if (dwc->ep0state == EP0_STATUS_PHASE)
-                       __dwc3_ep0_do_control_status(dwc, dwc->eps[1]);
+                       __dwc3_ep0_do_control_status(dwc, dwc->eps[direction]);
                else
                        dev_dbg(dwc->dev, "too early for delayed status\n");
 
-- 
1.7.11

--
To unsubscribe from this list: send the line "unsubscribe linux-usb" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to