diff options
author | Jason Liu <r64343@freescale.com> | 2012-04-17 11:06:52 +0800 |
---|---|---|
committer | Jason Liu <r64343@freescale.com> | 2012-04-18 18:40:57 +0800 |
commit | 7b0cbbd4d074a2a25ff5dbdac554260c06088bc0 (patch) | |
tree | 034308ddb22e8799c230b77d7293e2bd611f0c18 /cpu | |
parent | a9f787edee4e83d74573add7537cbff91e66b004 (diff) | |
download | u-boot-imx-7b0cbbd4d074a2a25ff5dbdac554260c06088bc0.zip u-boot-imx-7b0cbbd4d074a2a25ff5dbdac554260c06088bc0.tar.gz u-boot-imx-7b0cbbd4d074a2a25ff5dbdac554260c06088bc0.tar.bz2 |
ENGR00179762: i.MX6: print the SOC revision correctly
For example: The soc rev on i.mx6dl rev 1.0 not print correctly:
CPU: Freescale i.MX 6 family 0.0V at 792 MHz
This patch help u-boot print out the SOC revision correctly:
CPU: Freescale i.MX6 family TO1.0 at 792 MHz
Signed-off-by: Jason Liu <r64343@freescale.com>
Diffstat (limited to 'cpu')
-rw-r--r-- | cpu/arm_cortexa8/mx6/generic.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpu/arm_cortexa8/mx6/generic.c b/cpu/arm_cortexa8/mx6/generic.c index 58e4966..fa4eab3 100644 --- a/cpu/arm_cortexa8/mx6/generic.c +++ b/cpu/arm_cortexa8/mx6/generic.c @@ -896,7 +896,7 @@ static void check_cpu_temperature(void) #if defined(CONFIG_DISPLAY_CPUINFO) int print_cpuinfo(void) { - printf("CPU: Freescale i.MX 6 family %d.%dV at %d MHz\n", + printf("CPU: Freescale i.MX6 family TO%d.%d at %d MHz\n", (get_board_rev() & 0xFF) >> 4, (get_board_rev() & 0xF), __get_mcu_main_clk() / SZ_DEC_1M); |