From: John Rigby Date: Thu, 8 Apr 2010 05:30:09 +0000 (-0600) Subject: MX25 print arm clock instead of mpllclk on boot X-Git-Tag: v2010.09-rc1~28^2~7^2~12^2~8 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=0df5b4e38f02b5f9b5b1410dac15ffb8f937e4f4;p=u-boot MX25 print arm clock instead of mpllclk on boot Replace call to imx_get_mpllclk with imx_get_armclk to show frequency of ARM core instead of mpll internal bus in print_cpuinfo. Signed-off-by: John Rigby CC: Stefano Babic --- diff --git a/arch/arm/cpu/arm926ejs/mx25/generic.c b/arch/arm/cpu/arm926ejs/mx25/generic.c index 694841dd10..b80a389ed9 100644 --- a/arch/arm/cpu/arm926ejs/mx25/generic.c +++ b/arch/arm/cpu/arm926ejs/mx25/generic.c @@ -111,7 +111,7 @@ int print_cpuinfo (void) char buf[32]; printf ("CPU: Freescale i.MX25 at %s MHz\n\n", - strmhz (buf, imx_get_mpllclk ())); + strmhz (buf, imx_get_armclk ())); return 0; } #endif