diff options
author | Peter Chen <peter.chen@nxp.com> | 2020-05-22 13:08:31 +0300 |
---|---|---|
committer | Peter Chen <peter.chen@nxp.com> | 2020-12-10 03:45:26 +0300 |
commit | 68ed3f3d8a057bd34254e885a6306fedc0936e50 (patch) | |
tree | 6a784173140bf2c5d5a1fb9d026282223d7b29aa /drivers/usb/cdns3 | |
parent | ed22764847e8100f0af9af91ccfa58e5c559bd47 (diff) | |
download | linux-68ed3f3d8a057bd34254e885a6306fedc0936e50.tar.xz |
usb: cdns3: host: add xhci_plat_priv quirk XHCI_SKIP_PHY_INIT
cdns3 manages PHY by own DRD driver, so skip the management by
HCD core.
Reviewed-by: Jun Li <jun.li@nxp.com>
Reviewed-by: Pawel Laszczak <pawell@cadence.com>
Signed-off-by: Peter Chen <peter.chen@nxp.com>
Diffstat (limited to 'drivers/usb/cdns3')
-rw-r--r-- | drivers/usb/cdns3/host.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/usb/cdns3/host.c b/drivers/usb/cdns3/host.c index de8da737fa25..f84739327a16 100644 --- a/drivers/usb/cdns3/host.c +++ b/drivers/usb/cdns3/host.c @@ -24,6 +24,7 @@ #define LPM_2_STB_SWITCH_EN BIT(25) static const struct xhci_plat_priv xhci_plat_cdns3_xhci = { + .quirks = XHCI_SKIP_PHY_INIT, .suspend_quirk = xhci_cdns3_suspend_quirk, }; |