From: Wenyou Yang Date: Tue, 2 Feb 2016 04:46:13 +0000 (+0800) Subject: ARM: at91: clean up the PMC_PLLICPR init code X-Git-Tag: v2016.03-rc3~82^2~6 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=c43a72e88eb89d7f47d92e5a406efd5c67ab8434;p=u-boot ARM: at91: clean up the PMC_PLLICPR init code Due to introducing the PMC_PLLICPR init function, use this function to clean up the code. Signed-off-by: Wenyou Yang Tested-by: Heiko Schocher Reviewed-by: Andreas Bießmann --- diff --git a/arch/arm/mach-at91/spl_at91.c b/arch/arm/mach-at91/spl_at91.c index b19f95b0d0..cc3341acb5 100644 --- a/arch/arm/mach-at91/spl_at91.c +++ b/arch/arm/mach-at91/spl_at91.c @@ -14,7 +14,6 @@ #include #include #include -#include #include #include #include @@ -77,8 +76,6 @@ void __weak spl_board_init(void) void board_init_f(ulong dummy) { - struct at91_pmc *pmc = (struct at91_pmc *)ATMEL_BASE_PMC; - lowlevel_clock_init(); at91_disable_wdt(); @@ -86,7 +83,7 @@ void board_init_f(ulong dummy) * At this stage the main oscillator is supposed to be enabled * PCK = MCK = MOSC */ - writel(0x00, &pmc->pllicpr); + at91_pllicpr_init(0x00); /* Configure PLLA = MOSC * (PLL_MULA + 1) / PLL_DIVA */ at91_plla_init(CONFIG_SYS_AT91_PLLA);