diff options
Diffstat (limited to 'arch/arm/mach-pxa/generic.c')
-rw-r--r-- | arch/arm/mach-pxa/generic.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/arch/arm/mach-pxa/generic.c b/arch/arm/mach-pxa/generic.c index 04b013fbc98f..ec510ecf8370 100644 --- a/arch/arm/mach-pxa/generic.c +++ b/arch/arm/mach-pxa/generic.c | |||
@@ -63,6 +63,12 @@ EXPORT_SYMBOL(get_clock_tick_rate); | |||
63 | */ | 63 | */ |
64 | void __init pxa_timer_init(void) | 64 | void __init pxa_timer_init(void) |
65 | { | 65 | { |
66 | if (cpu_is_pxa25x()) | ||
67 | pxa25x_clocks_init(); | ||
68 | if (cpu_is_pxa27x()) | ||
69 | pxa27x_clocks_init(); | ||
70 | if (cpu_is_pxa3xx()) | ||
71 | pxa3xx_clocks_init(); | ||
66 | pxa_timer_nodt_init(IRQ_OST0, io_p2v(0x40a00000), | 72 | pxa_timer_nodt_init(IRQ_OST0, io_p2v(0x40a00000), |
67 | get_clock_tick_rate()); | 73 | get_clock_tick_rate()); |
68 | } | 74 | } |