aboutsummaryrefslogtreecommitdiff
path: root/drivers/cpu/imx8_cpu.c
diff options
context:
space:
mode:
authorFrank Li <Frank.Li@nxp.com>2020-05-03 21:58:55 +0800
committerStefano Babic <sbabic@denx.de>2020-05-03 15:45:49 +0200
commit8142a97d541ef1473925b3677d6bf86bcddb69ac (patch)
treefcd8459d0cd0ace24e7eebd42783c3dadac21f95 /drivers/cpu/imx8_cpu.c
parent3ee6ea443eb466399ab325a58b377326ac5c57b5 (diff)
downloadu-boot-8142a97d541ef1473925b3677d6bf86bcddb69ac.zip
u-boot-8142a97d541ef1473925b3677d6bf86bcddb69ac.tar.gz
u-boot-8142a97d541ef1473925b3677d6bf86bcddb69ac.tar.bz2
cpu: imx8: show RevC instead of Rev? at boot log
Add REVC informaiton. Reviewed-by: Simon Glass <sjg@chromium.org> Signed-off-by: Frank Li <Frank.Li@nxp.com> Signed-off-by: Peng Fan <peng.fan@nxp.com>
Diffstat (limited to 'drivers/cpu/imx8_cpu.c')
-rw-r--r--drivers/cpu/imx8_cpu.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/cpu/imx8_cpu.c b/drivers/cpu/imx8_cpu.c
index 85ba7b7..95c14c9 100644
--- a/drivers/cpu/imx8_cpu.c
+++ b/drivers/cpu/imx8_cpu.c
@@ -43,6 +43,8 @@ const char *get_imx8_rev(u32 rev)
return "A";
case CHIP_REV_B:
return "B";
+ case CHIP_REV_C:
+ return "C";
default:
return "?";
}