|
@@ -242,18 +242,11 @@ static int __init mxs_clocksource_init(struct clk *timer_clk)
|
|
|
return 0;
|
|
|
}
|
|
|
|
|
|
-void __init mxs_timer_init(void)
|
|
|
+static void __init mxs_timer_init(struct device_node *np)
|
|
|
{
|
|
|
- struct device_node *np;
|
|
|
struct clk *timer_clk;
|
|
|
int irq;
|
|
|
|
|
|
- np = of_find_compatible_node(NULL, NULL, "fsl,timrot");
|
|
|
- if (!np) {
|
|
|
- pr_err("%s: failed find timrot node\n", __func__);
|
|
|
- return;
|
|
|
- }
|
|
|
-
|
|
|
timer_clk = clk_get_sys("timrot", NULL);
|
|
|
if (IS_ERR(timer_clk)) {
|
|
|
pr_err("%s: failed to get clk\n", __func__);
|
|
@@ -304,3 +297,4 @@ void __init mxs_timer_init(void)
|
|
|
irq = irq_of_parse_and_map(np, 0);
|
|
|
setup_irq(irq, &mxs_timer_irq);
|
|
|
}
|
|
|
+CLOCKSOURCE_OF_DECLARE(mxs, "fsl,timrot", mxs_timer_init)
|