diff options
author | Frank Li | 2020-05-03 21:58:55 +0800 |
---|---|---|
committer | Stefano Babic | 2020-05-03 15:45:49 +0200 |
commit | 8142a97d541ef1473925b3677d6bf86bcddb69ac (patch) | |
tree | fcd8459d0cd0ace24e7eebd42783c3dadac21f95 /drivers/cpu/imx8_cpu.c | |
parent | 3ee6ea443eb466399ab325a58b377326ac5c57b5 (diff) |
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.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/cpu/imx8_cpu.c b/drivers/cpu/imx8_cpu.c index 85ba7b7df2c..95c14c98d86 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 "?"; } |