mirror of
https://github.com/Fishwaldo/u-boot.git
synced 2025-03-19 05:31:32 +00:00
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 <jcrigby@gmail.com> CC: Stefano Babic <sbabic@denx.de>
This commit is contained in:
parent
1c9d91aca6
commit
34196b0a8b
1 changed files with 1 additions and 1 deletions
|
@ -111,7 +111,7 @@ int print_cpuinfo (void)
|
||||||
char buf[32];
|
char buf[32];
|
||||||
|
|
||||||
printf ("CPU: Freescale i.MX25 at %s MHz\n\n",
|
printf ("CPU: Freescale i.MX25 at %s MHz\n\n",
|
||||||
strmhz (buf, imx_get_mpllclk ()));
|
strmhz (buf, imx_get_armclk ()));
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Add table
Reference in a new issue