phy: ti: j721e-wiz: Configure 'p_standard_mode' only for DP/QSGMII
authorKishon Vijay Abraham I <kishon@ti.com>
Wed, 31 Mar 2021 13:14:17 +0000 (18:44 +0530)
committerVinod Koul <vkoul@kernel.org>
Wed, 31 Mar 2021 15:41:46 +0000 (21:11 +0530)
Configure 'p_standard_mode' only for DP/QSGMII as for other modes
it's not used as per the programming sequence. Add "continue" in the
else to prevent random value from being written to p_standard_mode.

Signed-off-by: Kishon Vijay Abraham I <kishon@ti.com>
Link: https://lore.kernel.org/r/20210331131417.15596-1-kishon@ti.com
Signed-off-by: Vinod Koul <vkoul@kernel.org>
drivers/phy/ti/phy-j721e-wiz.c

index 2523805..2b35468 100644 (file)
@@ -340,6 +340,8 @@ static int wiz_mode_select(struct wiz *wiz)
                        mode = LANE_MODE_GEN1;
                else if (wiz->lane_phy_type[i] == PHY_TYPE_QSGMII)
                        mode = LANE_MODE_GEN2;
+               else
+                       continue;
 
                ret = regmap_field_write(wiz->p_standard_mode[i], mode);
                if (ret)