[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <20221102171012.49150-7-kory.maincent@bootlin.com>
Date: Wed, 2 Nov 2022 18:10:10 +0100
From: Köry Maincent <kory.maincent@...tlin.com>
To: viresh.kumar@...aro.org, Bhavna Yadav <bhavna.yadav@...com>,
Vijay Kumar Mishra <vijay.kumar@...com>,
Rajeev Kumar <rajeev-dlh.kumar@...com>,
Deepak Sikri <deepak.sikri@...com>,
linux-arm-kernel@...ts.infradead.org, devicetree@...r.kernel.org,
linux-kernel@...r.kernel.org, linux-clk@...r.kernel.org
Cc: Kory Maincent <kory.maincent@...tlin.com>,
thomas.petazzoni@...tlin.com, Viresh Kumar <vireshk@...nel.org>,
Shiraz Hashim <shiraz.linux.kernel@...il.com>, soc@...nel.org,
Rob Herring <robh+dt@...nel.org>,
Krzysztof Kozlowski <krzysztof.kozlowski+dt@...aro.org>,
Russell King <linux@...linux.org.uk>,
Michael Turquette <mturquette@...libre.com>,
Stephen Boyd <sboyd@...nel.org>, Arnd Bergmann <arnd@...db.de>,
Sudeep Holla <sudeep.holla@....com>,
Gregory CLEMENT <gregory.clement@...tlin.com>,
Neil Armstrong <neil.armstrong@...aro.org>,
Alexandre Ghiti <alexandre.ghiti@...onical.com>,
Vipul Kumar Samar <vipulkumar.samar@...com>,
Vipin Kumar <vipin.kumar@...com>
Subject: [PATCH v2 6/6] clk: spear: Fix SSP clock definition on SPEAr600
From: Kory Maincent <kory.maincent@...tlin.com>
There is no SPEAr600 device named "ssp-pl022.x". Instead, the description
of the SSP (Synchronous Serial Port) was recently added to the Device Tree,
and the device name is "xxx.spi", so we should associate the SSP gateable
clock to these device names.
Signed-off-by: Kory Maincent <kory.maincent@...tlin.com>
Acked-by: Viresh Kumar <viresh.kumar@...aro.org>
---
drivers/clk/spear/spear6xx_clock.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/drivers/clk/spear/spear6xx_clock.c b/drivers/clk/spear/spear6xx_clock.c
index ee0ed89f2954..adfa118520c3 100644
--- a/drivers/clk/spear/spear6xx_clock.c
+++ b/drivers/clk/spear/spear6xx_clock.c
@@ -326,13 +326,13 @@ void __init spear6xx_clk_init(void __iomem *misc_base)
clk = clk_register_gate(NULL, "ssp0_clk", "apb_clk", 0, PERIP1_CLK_ENB,
SSP0_CLK_ENB, 0, &_lock);
- clk_register_clkdev(clk, NULL, "ssp-pl022.0");
+ clk_register_clkdev(clk, NULL, "d0100000.spi");
clk = clk_register_gate(NULL, "ssp1_clk", "apb_clk", 0, PERIP1_CLK_ENB,
SSP1_CLK_ENB, 0, &_lock);
- clk_register_clkdev(clk, NULL, "ssp-pl022.1");
+ clk_register_clkdev(clk, NULL, "d0180000.spi");
clk = clk_register_gate(NULL, "ssp2_clk", "apb_clk", 0, PERIP1_CLK_ENB,
SSP2_CLK_ENB, 0, &_lock);
- clk_register_clkdev(clk, NULL, "ssp-pl022.2");
+ clk_register_clkdev(clk, NULL, "d8180000.spi");
}
--
2.25.1
Powered by blists - more mailing lists