summaryrefslogtreecommitdiff
path: root/drivers/phy
diff options
context:
space:
mode:
authorCasey Connolly <[email protected]>2025-11-14 15:47:21 +0100
committerCasey Connolly <[email protected]>2026-01-14 16:25:09 +0100
commitc9c61c1f4e74ff377d3e43ccf90d5f00e554f2c9 (patch)
treeaa7a340a59f16010ff1495ec1f2ad5694882b905 /drivers/phy
parent57a5305948f397cf60fc73c5276988deb4fb376a (diff)
phy: qcom: snps-femto-v2: assert reset in probe
The power on function for the phy only deasserts the reset, so the phy might be in a weird state that we don't clean up properly. Assert the reset in probe() so that when we power on we will have the phy in a clean state. Reviewed-by: Neil Armstrong <[email protected]> Link: https://patch.msgid.link/[email protected] Signed-off-by: Casey Connolly <[email protected]>
Diffstat (limited to 'drivers/phy')
-rw-r--r--drivers/phy/qcom/phy-qcom-snps-femto-v2.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/phy/qcom/phy-qcom-snps-femto-v2.c b/drivers/phy/qcom/phy-qcom-snps-femto-v2.c
index 04f0f0e7817..e782de07ebc 100644
--- a/drivers/phy/qcom/phy-qcom-snps-femto-v2.c
+++ b/drivers/phy/qcom/phy-qcom-snps-femto-v2.c
@@ -174,7 +174,7 @@ static int qcom_snps_hsphy_phy_probe(struct udevice *dev)
return ret;
}
- reset_deassert_bulk(&priv->resets);
+ reset_assert_bulk(&priv->resets);
return 0;
}