diff options
author | Enric Balletbo i Serra <eballetbo@iseebcn.com> | 2013-03-15 01:35:37 +0000 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2013-03-24 12:49:10 -0400 |
commit | 244044e151860b114c69c15e322ee3a5df3d5e1e (patch) | |
tree | 149c42ee1c926523f6d1615875bd31ac4acbad71 /arch | |
parent | 59dcf970d11ebff5d9f4bbbde79fda584e9e7ad4 (diff) | |
download | u-boot-imx-244044e151860b114c69c15e322ee3a5df3d5e1e.zip u-boot-imx-244044e151860b114c69c15e322ee3a5df3d5e1e.tar.gz u-boot-imx-244044e151860b114c69c15e322ee3a5df3d5e1e.tar.bz2 |
ARM: AM33XX: Fix typo that causes an AM duplication in CPU name.
Just fix a typo displaying the CPU info. With CONFIG_DISPLAY_INFO we see
something like AMAM335X-GP rev 0 instead of AM335X-GP rev 0.
Signed-off-by: Enric Balletbo i Serra <eballetbo@iseebcn.com>
Reviewed-by: Javier Martinez Canillas <javier@dowhile0.org>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/arm/cpu/armv7/am33xx/sys_info.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/cpu/armv7/am33xx/sys_info.c b/arch/arm/cpu/armv7/am33xx/sys_info.c index 507b618..db99e95 100644 --- a/arch/arm/cpu/armv7/am33xx/sys_info.c +++ b/arch/arm/cpu/armv7/am33xx/sys_info.c @@ -120,7 +120,7 @@ int print_cpuinfo(void) sec_s = "?"; } - printf("AM%s-%s rev %d\n", + printf("%s-%s rev %d\n", cpu_s, sec_s, get_cpu_rev()); /* TODO: Print ARM and DDR frequencies */ |