We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3b384cc commit 2d3465aCopy full SHA for 2d3465a
drivers/phy/qualcomm/phy-qcom-qmp-usb.c
@@ -1703,6 +1703,7 @@ static int qmp_usb_power_on(struct phy *phy)
1703
void __iomem *tx = qmp->tx;
1704
void __iomem *rx = qmp->rx;
1705
void __iomem *pcs = qmp->pcs;
1706
+ void __iomem *pcs_usb = qmp->pcs_usb;
1707
void __iomem *status;
1708
unsigned int val;
1709
int ret;
@@ -1726,6 +1727,9 @@ static int qmp_usb_power_on(struct phy *phy)
1726
1727
1728
qmp_usb_configure(pcs, cfg->pcs_tbl, cfg->pcs_tbl_num);
1729
1730
+ if (pcs_usb)
1731
+ qmp_usb_configure(pcs_usb, cfg->pcs_usb_tbl, cfg->pcs_usb_tbl_num);
1732
+
1733
if (cfg->has_pwrdn_delay)
1734
usleep_range(10, 20);
1735
0 commit comments