diff options
author | Robert Jarzmik <robert.jarzmik@free.fr> | 2016-09-19 21:12:13 +0200 |
---|---|---|
committer | Robert Jarzmik <robert.jarzmik@free.fr> | 2016-10-18 09:12:36 +0200 |
commit | f4e14edf25661f32c9e7323d8a482b8632a6f47f (patch) | |
tree | a778fa00549bd28efe7c6ed27c56e1348b8d4aff /include/clocksource | |
parent | a758c9b93f5c4e826b3c0849c96c630b1cce8f8d (diff) |
ARM: sa11x0/pxa: acquire timer rate from the clock rate
As both pxa and sa1100 provide a clock to the timer, the rate can be
inferred from the clock rather than hard encoded in a functional call.
This patch changes the pxa timer to have a mandatory clock which is used
as the timer rate.
Signed-off-by: Robert Jarzmik <robert.jarzmik@free.fr>
Acked-by: Daniel Lezcano <daniel.lezcano@linaro.org>
Acked-by: Russell King <rmk+kernel@armlinux.org.uk>
Diffstat (limited to 'include/clocksource')
-rw-r--r-- | include/clocksource/pxa.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/include/clocksource/pxa.h b/include/clocksource/pxa.h index 1efbe5a66958..a9a0f03024a4 100644 --- a/include/clocksource/pxa.h +++ b/include/clocksource/pxa.h @@ -12,7 +12,6 @@ #ifndef _CLOCKSOURCE_PXA_H #define _CLOCKSOURCE_PXA_H -extern void pxa_timer_nodt_init(int irq, void __iomem *base, - unsigned long clock_tick_rate); +extern void pxa_timer_nodt_init(int irq, void __iomem *base); #endif |