diff options
author | Shawn Guo <shawn.guo@linaro.org> | 2013-03-25 10:57:14 -0400 |
---|---|---|
committer | Shawn Guo <shawn.guo@linaro.org> | 2013-04-01 04:30:02 -0400 |
commit | 2efb950465e9180c3ff657a755b8a973f7b9ae42 (patch) | |
tree | 4df37150ebe557496ec75841137ec3a44c52f8bc /arch/arm/mach-mxs/timer.c | |
parent | 633ef4c7d18982d184242d42056c622a433d93fe (diff) |
ARM: mxs: look up timrot clock from device tree
Change call clk_get_sys() to of_clk_get() to look up timrot clock from
device tree, so that the clk_register_clkdev() call for timrot can be
saved in clock driver.
Signed-off-by: Shawn Guo <shawn.guo@linaro.org>
Diffstat (limited to 'arch/arm/mach-mxs/timer.c')
-rw-r--r-- | arch/arm/mach-mxs/timer.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-mxs/timer.c b/arch/arm/mach-mxs/timer.c index fe2903d7939a..f5142aa234a3 100644 --- a/arch/arm/mach-mxs/timer.c +++ b/arch/arm/mach-mxs/timer.c | |||
@@ -247,7 +247,7 @@ static void __init mxs_timer_init(struct device_node *np) | |||
247 | struct clk *timer_clk; | 247 | struct clk *timer_clk; |
248 | int irq; | 248 | int irq; |
249 | 249 | ||
250 | timer_clk = clk_get_sys("timrot", NULL); | 250 | timer_clk = of_clk_get(np, 0); |
251 | if (IS_ERR(timer_clk)) { | 251 | if (IS_ERR(timer_clk)) { |
252 | pr_err("%s: failed to get clk\n", __func__); | 252 | pr_err("%s: failed to get clk\n", __func__); |
253 | return; | 253 | return; |