Re: [PATCH 13/23] clocksource/drivers: Rename clocksource_probe to timer_probe

2017-06-15 Thread Matthias Brugger
clk_init(NULL); - clocksource_probe(); + timer_probe(); }; Acked-by: Matthias Brugger ___ linux-snps-arc mailing list linux-snps-arc@lists.infradead.org http://lists.infradead.org/mailman/listinfo/linux-snps-arc

Re: [PATCH 2/7] clocksource: Rename CLOCKSOURCE_OF_DECLARE

2017-05-29 Thread Matthias Brugger
265,4 +265,4 @@ static int __init mtk_timer_init(struct device_node *node) return -EINVAL; } -CLOCKSOURCE_OF_DECLARE(mtk_mt6577, "mediatek,mt6577-timer", mtk_timer_init); +TIMER_OF_DECLARE(mtk_mt6577, "mediatek,mt6577-timer", mtk_timer_init); For the mediatek driver: A

Re: [PATCH V2 63/63] clocksources: Switch back to the clksrc table

2016-06-17 Thread Matthias Brugger
CE_OF_DECLARE - clksrc-of-ret => clksrc-of Signed-off-by: Daniel Lezcano --- arch/arc/kernel/time.c| 6 +++--- [...] drivers/clocksource/mtk_timer.c | 2 +- For mediatek driver: Acked-by: Matthias Brugger _