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.06-rc1~69^2~10 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=34196b0a8bd7ab6d472e2e6f6c90b73e915a1fae;p=kernel%2Fu-boot.git 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 694841d..b80a389 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