From: Mika Penttilä <mika.penttila@xxxxxxxxxxxx> I started to see usb failures on i.MX6, like "nonzero urb status received" after: " commit 4e88d4c083016454f179686529ae65d70b933b58 Author: Martin Blumenstingl <martin.blumenstingl@xxxxxxxxxxxxxx> Date: Sat Mar 3 22:43:03 2018 +0100 usb: add a flag to skip PHY initialization to struct usb_hcd" The errors were related to some scpecific scenarios, like usb device reset, disappear etc. The fix below worked for me. --Mika Signed-off-by: Mika Penttilä <mika.penttila@xxxxxxxxxxxx> --- drivers/usb/chipidea/host.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/drivers/usb/chipidea/host.c b/drivers/usb/chipidea/host.c index af45aa32..c45d081 100644 --- a/drivers/usb/chipidea/host.c +++ b/drivers/usb/chipidea/host.c @@ -124,6 +124,9 @@ static int host_start(struct ci_hdrc *ci) hcd->power_budget = ci->platdata->power_budget; hcd->tpl_support = ci->platdata->tpl_support; + + hcd->usb_phy = ci->usb_phy; + if (ci->phy || ci->usb_phy) hcd->skip_phy_initialization = 1; -- 1.9.1 -- To unsubscribe from this list: send the line "unsubscribe linux-usb" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html