diff options
author | Per Forlin <per.forlin@linaro.org> | 2010-12-05 06:27:05 -0500 |
---|---|---|
committer | Linus Walleij <linus.walleij@stericsson.com> | 2010-12-08 07:15:23 -0500 |
commit | 9b04f8b9070e60fe9d335613ec538223c159a5c9 (patch) | |
tree | d63c3cec66bdd70abb1b64dc150aa876964425fd /arch/arm/mach-ux500 | |
parent | 592b2f254d68b6eb8665658cc7d8fc3cd61ebc94 (diff) |
ux500: Call prmcu_init only for u8500
PRCMU driver only supports u8500. Don't
initialize prcmu if running on u5500.
Signed-off-by: Per Forlin <per.forlin@linaro.org>
Signed-off-by: Linus Walleij <linus.walleij@stericsson.com>
Diffstat (limited to 'arch/arm/mach-ux500')
-rw-r--r-- | arch/arm/mach-ux500/cpu.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/arch/arm/mach-ux500/cpu.c b/arch/arm/mach-ux500/cpu.c index 46c372fb806d..a3700bc374d3 100644 --- a/arch/arm/mach-ux500/cpu.c +++ b/arch/arm/mach-ux500/cpu.c | |||
@@ -59,7 +59,8 @@ void __init ux500_init_irq(void) | |||
59 | * Init clocks here so that they are available for system timer | 59 | * Init clocks here so that they are available for system timer |
60 | * initialization. | 60 | * initialization. |
61 | */ | 61 | */ |
62 | prcmu_early_init(); | 62 | if (cpu_is_u8500()) |
63 | prcmu_early_init(); | ||
63 | clk_init(); | 64 | clk_init(); |
64 | } | 65 | } |
65 | 66 | ||