diff options
author | Masahiro Yamada <yamada.masahiro@socionext.com> | 2015-12-17 17:47:46 +0900 |
---|---|---|
committer | Masahiro Yamada <yamada.masahiro@socionext.com> | 2015-12-23 00:08:54 +0900 |
commit | 6e1550fa7cb37061abcb3de13e69b859f8fd75cb (patch) | |
tree | d6cb347952b41550fe606e758692de860cdd7318 | |
parent | 6f45a9755ee5809b4d65f3b00d505d7ef412e3b1 (diff) | |
download | u-boot-imx-6e1550fa7cb37061abcb3de13e69b859f8fd75cb.zip u-boot-imx-6e1550fa7cb37061abcb3de13e69b859f8fd75cb.tar.gz u-boot-imx-6e1550fa7cb37061abcb3de13e69b859f8fd75cb.tar.bz2 |
ARM: uniphier: display model number all the time on boot up
Both "Model 1" and "Model 2" are supported for ProXstream2 and
PH1-LD6b boards. It is useful to show the model number in the
boot banner.
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
-rw-r--r-- | arch/arm/mach-uniphier/cpu_info.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/arch/arm/mach-uniphier/cpu_info.c b/arch/arm/mach-uniphier/cpu_info.c index acfb06d..935b209 100644 --- a/arch/arm/mach-uniphier/cpu_info.c +++ b/arch/arm/mach-uniphier/cpu_info.c @@ -54,8 +54,7 @@ int print_cpuinfo(void) return -1; } - if (model > 1) - printf(" model %d", model); + printf(" model %d", model); printf(" (rev. %d)\n", rev); |