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 /arch/arm/mach-sa1100 | |
parent | clk: pxa25x: OSTIMER0 clocks from the main oscillator (diff) | |
download | linux-f4e14edf25661f32c9e7323d8a482b8632a6f47f.tar.xz linux-f4e14edf25661f32c9e7323d8a482b8632a6f47f.zip |
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 'arch/arm/mach-sa1100')
-rw-r--r-- | arch/arm/mach-sa1100/generic.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-sa1100/generic.c b/arch/arm/mach-sa1100/generic.c index 3e09beddb6e8..2eb00691b07d 100644 --- a/arch/arm/mach-sa1100/generic.c +++ b/arch/arm/mach-sa1100/generic.c @@ -378,7 +378,7 @@ void __init sa1100_map_io(void) void __init sa1100_timer_init(void) { - pxa_timer_nodt_init(IRQ_OST0, io_p2v(0x90000000), 3686400); + pxa_timer_nodt_init(IRQ_OST0, io_p2v(0x90000000)); } static struct resource irq_resource = |