]> git.ipfire.org Git - people/ms/u-boot.git/commitdiff
imx: Use a clear identification of an unidentified CPU type
authorOtavio Salvador <otavio@ossystems.com.br>
Sat, 30 Jun 2012 05:07:32 +0000 (05:07 +0000)
committerAlbert ARIBAUD <albert.u.boot@aribaud.net>
Sat, 1 Sep 2012 12:58:16 +0000 (14:58 +0200)
In case an unidentified CPU type is detected it now returns
i.MX??, in a const char.

Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
Cc: Marek Vasut <marex@denx.de>
Cc: Stefano Babic <sbabic@denx.de>
Cc: Fabio Estevam <fabio.estevam@freescale.com>
arch/arm/cpu/armv7/imx-common/cpu.c

index b3195dd6fb2a9817d37f2d6e0e37b83833ed2d7b..e7bd0bf2adff450218943a563d2c0d54dc4bc8a3 100644 (file)
@@ -66,7 +66,7 @@ char *get_reset_cause(void)
 
 #if defined(CONFIG_DISPLAY_CPUINFO)
 
-static char *get_imx_type(u32 imxtype)
+static const char *get_imx_type(u32 imxtype)
 {
        switch (imxtype) {
        case 0x63:
@@ -80,7 +80,7 @@ static char *get_imx_type(u32 imxtype)
        case 0x53:
                return "53";
        default:
-               return "unknown";
+               return "??";
        }
 }