From c9c61c1f4e74ff377d3e43ccf90d5f00e554f2c9 Mon Sep 17 00:00:00 2001 From: Casey Connolly Date: Fri, 14 Nov 2025 15:47:21 +0100 Subject: [PATCH] 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 Link: https://patch.msgid.link/20251114144722.173021-2-casey.connolly@linaro.org Signed-off-by: Casey Connolly --- drivers/phy/qcom/phy-qcom-snps-femto-v2.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } -- 2.47.3