summaryrefslogtreecommitdiff
path: root/drivers
diff options
context:
space:
mode:
authorMichal Simek <[email protected]>2025-12-15 16:40:14 +0100
committerMichal Simek <[email protected]>2026-01-12 10:30:50 +0100
commitfeb121db3e85a97e1b3eb3a4408d2c52964307e3 (patch)
tree22d9e4b5734ba912b7d261118c4739ab7d7e6f61 /drivers
parentbf744b22362901fe7016d5b70389890cc1569b86 (diff)
ufs: amd-versal2: Fix reset names with binding
Align reset names with DT binding. Reviewed-by: Neil Armstrong <[email protected]> Signed-off-by: Michal Simek <[email protected]> Link: https://lore.kernel.org/r/e1082054610fe73d4487d12f4274315030592c77.1765813212.git.michal.simek@amd.com
Diffstat (limited to 'drivers')
-rw-r--r--drivers/ufs/ufs-amd-versal2.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/ufs/ufs-amd-versal2.c b/drivers/ufs/ufs-amd-versal2.c
index 96328c01584..dd62c9819ba 100644
--- a/drivers/ufs/ufs-amd-versal2.c
+++ b/drivers/ufs/ufs-amd-versal2.c
@@ -1,6 +1,6 @@
// SPDX-License-Identifier: GPL-2.0
/*
- * Copyright (C) 2024 Advanced Micro Devices, Inc.
+ * Copyright (C) 2024-2025 Advanced Micro Devices, Inc.
*/
#include <clk.h>
@@ -319,12 +319,12 @@ static int ufs_versal2_init(struct ufs_hba *hba)
}
priv->host_clk = core_clk_rate;
- priv->rstc = devm_reset_control_get(hba->dev, "ufshc-rst");
+ priv->rstc = devm_reset_control_get(hba->dev, "host");
if (IS_ERR(priv->rstc)) {
dev_err(hba->dev, "failed to get reset ctl: ufshc-rst\n");
return PTR_ERR(priv->rstc);
}
- priv->rstphy = devm_reset_control_get(hba->dev, "ufsphy-rst");
+ priv->rstphy = devm_reset_control_get(hba->dev, "phy");
if (IS_ERR(priv->rstphy)) {
dev_err(hba->dev, "failed to get reset ctl: ufsphy-rst\n");
return PTR_ERR(priv->rstphy);