]> git.sur5r.net Git - u-boot/commitdiff
imx: imx-common: print i.MX 7 SoC names consistently
authorStefan Agner <stefan@agner.ch>
Fri, 6 May 2016 18:21:50 +0000 (11:21 -0700)
committerStefano Babic <sbabic@denx.de>
Tue, 17 May 2016 15:52:20 +0000 (17:52 +0200)
According to the product website, the full names are i.MX 7Solo
and i.MX 7Dual, whereas the short form is i.MX7S and i.MX7D. Be
consistent and print the short form for both supported i.MX 7 SoCs.

Signed-off-by: Stefan Agner <stefan@agner.ch>
Reviewed-by: Fabio Estevam <fabio.estevam@nxp.com>
arch/arm/imx-common/cpu.c

index 5fb3ed840f8dd933637ef5cb9ca17b7341e2e949..42231872611caddf50b165fd55e066e67009141a 100644 (file)
@@ -138,7 +138,7 @@ const char *get_imx_type(u32 imxtype)
 {
        switch (imxtype) {
        case MXC_CPU_MX7S:
-               return "7SOLO"; /* Single-core version of the mx7 */
+               return "7S";    /* Single-core version of the mx7 */
        case MXC_CPU_MX7D:
                return "7D";    /* Dual-core version of the mx7 */
        case MXC_CPU_MX6QP: