summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJisheng Zhang <jszhang@kernel.org>2026-08-14 12:03:45 +0800
committerAlexandre Belloni <alexandre.belloni@bootlin.com>2026-08-18 23:15:51 +0200
commitff2eee2b8686fc9826b3e360435fb25460953da9 (patch)
treef6f7fd60a5dcf054d01aac8d2d8fa36e2fc0dd6b
parent9939e4cf593ddd23f5b4719bbfd7c894d64a3b7e (diff)
i3c: dw: rename "pclk" to "apb" to match dt-binding
Change clock name "pclk" to "apb" to match dt-binding doc. No upstream device tree sources currently use the "pclk" clock name, so no any backward compatibility issues. Fixes: a0d48ebf39ce ("i3c: dw: Add optional apb clock") Signed-off-by: Jisheng Zhang <jszhang@kernel.org> Reviewed-by: Frank Li <Frank.Li@nxp.com> Link: https://patch.msgid.link/20260814040345.23033-1-jszhang@kernel.org Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
-rw-r--r--drivers/i3c/master/dw-i3c-master.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/i3c/master/dw-i3c-master.c b/drivers/i3c/master/dw-i3c-master.c
index 7c88ed03f0af..0a3799a4ce87 100644
--- a/drivers/i3c/master/dw-i3c-master.c
+++ b/drivers/i3c/master/dw-i3c-master.c
@@ -1691,7 +1691,7 @@ int dw_i3c_common_probe(struct dw_i3c_master *master,
return -EINVAL;
}
- master->pclk = devm_clk_get_optional_enabled(&pdev->dev, "pclk");
+ master->pclk = devm_clk_get_optional_enabled(&pdev->dev, "apb");
if (IS_ERR(master->pclk))
return PTR_ERR(master->pclk);