diff options
author | Quentin Schulz <quentin.schulz@bootlin.com> | 2018-04-06 09:50:45 +0200 |
---|---|---|
committer | Stephen Boyd <sboyd@kernel.org> | 2018-04-06 13:45:34 -0700 |
commit | 1af897dff60aff3f421f12c5b9a3ebadc9e2d8a3 (patch) | |
tree | 3c4e6f95507e6c3cbc519f3c15040bc3cd79dba3 /drivers/clk/spear | |
parent | 7928b2cbe55b2a410a0f5c1f154610059c57b1b2 (diff) | |
download | linux-1af897dff60aff3f421f12c5b9a3ebadc9e2d8a3.tar.gz linux-1af897dff60aff3f421f12c5b9a3ebadc9e2d8a3.tar.bz2 linux-1af897dff60aff3f421f12c5b9a3ebadc9e2d8a3.zip |
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: Quentin Schulz <quentin.schulz@bootlin.com>
Acked-by: Viresh Kumar <viresh.kumar@linaro.org>
Signed-off-by: Stephen Boyd <sboyd@kernel.org>
Diffstat (limited to 'drivers/clk/spear')
-rw-r--r-- | drivers/clk/spear/spear6xx_clock.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/clk/spear/spear6xx_clock.c b/drivers/clk/spear/spear6xx_clock.c index f911d9f77763..47810be7f15c 100644 --- a/drivers/clk/spear/spear6xx_clock.c +++ b/drivers/clk/spear/spear6xx_clock.c @@ -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, 1); - clk_register_clkdev(clk, NULL, "wdt"); + clk_register_clkdev(clk, NULL, "fc880000.wdt"); /* clock derived from pll1 clk */ clk = clk_register_fixed_factor(NULL, "cpu_clk", "pll1_clk", |