summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Agner <stefan@agner.ch>2016-05-06 11:21:50 -0700
committerStefano Babic <sbabic@denx.de>2016-05-17 17:52:20 +0200
commit249092fa81f3dd3fee94fd05973833e30405f3c4 (patch)
treee0cbc7a30209eafe59135c41f94b0c45e8cda2f6
parentf716bf11f3f96e487772d9e47d413c7b30f26b6c (diff)
downloadtalos-obmc-uboot-249092fa81f3dd3fee94fd05973833e30405f3c4.tar.gz
talos-obmc-uboot-249092fa81f3dd3fee94fd05973833e30405f3c4.zip
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 <stefan@agner.ch> Reviewed-by: Fabio Estevam <fabio.estevam@nxp.com>
-rw-r--r--arch/arm/imx-common/cpu.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/imx-common/cpu.c b/arch/arm/imx-common/cpu.c
index 5fb3ed840f..4223187261 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:
OpenPOWER on IntegriCloud