From: Enric Balletbo i Serra Date: Fri, 15 Mar 2013 01:35:37 +0000 (+0000) Subject: ARM: AM33XX: Fix typo that causes an AM duplication in CPU name. X-Git-Tag: v2013.04-rc2~14^2~6^2~15 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=244044e151860b114c69c15e322ee3a5df3d5e1e;p=u-boot 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 Reviewed-by: Javier Martinez Canillas --- diff --git a/arch/arm/cpu/armv7/am33xx/sys_info.c b/arch/arm/cpu/armv7/am33xx/sys_info.c index 507b6180e6..db99e9535f 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 */