]> git.kernelconcepts.de Git - karo-tx-uboot.git/commitdiff
ARM: AM33XX: Fix typo that causes an AM duplication in CPU name.
authorEnric Balletbo i Serra <eballetbo@iseebcn.com>
Fri, 15 Mar 2013 01:35:37 +0000 (01:35 +0000)
committerTom Rini <trini@ti.com>
Sun, 24 Mar 2013 16:49:10 +0000 (12:49 -0400)
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>
arch/arm/cpu/armv7/am33xx/sys_info.c

index 507b6180e62f1afc500bd11e1dd10c5730097414..db99e9535ff3379f29fcecf1f5c73e7361a3e6d4 100644 (file)
@@ -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  */