Commit 1af897df authored by Quentin Schulz's avatar Quentin Schulz Committed by Stephen Boyd

clk: spear: fix WDT clock definition on SPEAr600

There is no SPEAr600 device named "wdt". Instead, the description of the
WDT (watchdog) was recently added to the Device Tree, and the device
name is "fc880000.wdt", so we should associate the WDT fixed rate clock
to this device name.
Signed-off-by: default avatarQuentin Schulz <quentin.schulz@bootlin.com>
Acked-by: default avatarViresh Kumar <viresh.kumar@linaro.org>
Signed-off-by: default avatarStephen Boyd <sboyd@kernel.org>
parent 7928b2cb
...@@ -147,7 +147,7 @@ void __init spear6xx_clk_init(void __iomem *misc_base) ...@@ -147,7 +147,7 @@ void __init spear6xx_clk_init(void __iomem *misc_base)
clk = clk_register_fixed_factor(NULL, "wdt_clk", "osc_30m_clk", 0, 1, clk = clk_register_fixed_factor(NULL, "wdt_clk", "osc_30m_clk", 0, 1,
1); 1);
clk_register_clkdev(clk, NULL, "wdt"); clk_register_clkdev(clk, NULL, "fc880000.wdt");
/* clock derived from pll1 clk */ /* clock derived from pll1 clk */
clk = clk_register_fixed_factor(NULL, "cpu_clk", "pll1_clk", clk = clk_register_fixed_factor(NULL, "cpu_clk", "pll1_clk",
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment