From: Stefan Agner Date: Fri, 6 May 2016 18:21:50 +0000 (-0700) Subject: imx: imx-common: print i.MX 7 SoC names consistently X-Git-Tag: v2016.07-rc2~16^2~64 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=249092fa81f3dd3fee94fd05973833e30405f3c4;p=platform%2Fkernel%2Fu-boot.git imx: imx-common: print i.MX 7 SoC names consistently 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 Reviewed-by: Fabio Estevam --- diff --git a/arch/arm/imx-common/cpu.c b/arch/arm/imx-common/cpu.c index 5fb3ed8..4223187 100644 --- a/arch/arm/imx-common/cpu.c +++ b/arch/arm/imx-common/cpu.c @@ -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: