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>
This commit is contained in:
Per Forlin 2010-12-05 12:27:05 +01:00 committed by Linus Walleij
parent 592b2f254d
commit 9b04f8b907
1 changed files with 2 additions and 1 deletions

View File

@ -59,7 +59,8 @@ void __init ux500_init_irq(void)
* Init clocks here so that they are available for system timer
* initialization.
*/
prcmu_early_init();
if (cpu_is_u8500())
prcmu_early_init();
clk_init();
}