diff options
author | Fabio Estevam <fabioestevam@yahoo.com> | 2010-04-23 06:32:01 -0700 |
---|---|---|
committer | Tom <Tom@bumblecow.com> | 2010-05-10 11:21:53 -0500 |
commit | 46cd572ddb87f7ceb178978049fc93f9c85f51e6 (patch) | |
tree | f85b5a7174459c5dc80c27b454f664d1b572dd44 | |
parent | 85fda142fe3f38cd49407c8f6e0f5467e9837e88 (diff) | |
download | u-boot-imx-46cd572ddb87f7ceb178978049fc93f9c85f51e6.zip u-boot-imx-46cd572ddb87f7ceb178978049fc93f9c85f51e6.tar.gz u-boot-imx-46cd572ddb87f7ceb178978049fc93f9c85f51e6.tar.bz2 |
MX51: Fix MX51 CPU detect message
Fix MX51 CPU detect message.
Original string was:
CPU: Freescale i.MX51 family 3.0V at 800 MHz
which can be misinterpreted as 3.0 Volts instead of the silicon revision.
,change it to:
CPU: Freescale i.MX51 family rev3.0 at 800 MHz
Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
-rw-r--r-- | arch/arm/cpu/arm_cortexa8/mx51/soc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/cpu/arm_cortexa8/mx51/soc.c b/arch/arm/cpu/arm_cortexa8/mx51/soc.c index 2a139b2..f22ebe9 100644 --- a/arch/arm/cpu/arm_cortexa8/mx51/soc.c +++ b/arch/arm/cpu/arm_cortexa8/mx51/soc.c @@ -67,7 +67,7 @@ int print_cpuinfo(void) u32 cpurev; cpurev = get_cpu_rev(); - printf("CPU: Freescale i.MX51 family %d.%dV at %d MHz\n", + printf("CPU: Freescale i.MX51 family rev%d.%d at %d MHz\n", (cpurev & 0xF0) >> 4, (cpurev & 0x0F) >> 4, mxc_get_clock(MXC_ARM_CLK) / 1000000); |