summaryrefslogtreecommitdiffstats
path: root/arch/arm/cpu/armv7/s5p-common
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2015-07-02 18:16:15 -0600
committerSimon Glass <sjg@chromium.org>2015-08-05 21:06:14 -0600
commit71db6341c53038db5a73343da2c559dea6c89a7a (patch)
tree4f996948f32f7cfa807da2ceb21930b7d5ad125a /arch/arm/cpu/armv7/s5p-common
parent129c942f321ae6f634e1b5668a9a30b19ad9ac3a (diff)
downloadblackbird-obmc-uboot-71db6341c53038db5a73343da2c559dea6c89a7a.tar.gz
blackbird-obmc-uboot-71db6341c53038db5a73343da2c559dea6c89a7a.zip
exynos: Tidy up CPU frequency display
Line up the display with the line below, e.g.: CPU: Exynos5250 @ 1.7 GHz Model: Google Spring DRAM: 2 GiB MMC: EXYNOS DWMMC: 0 Also show the speed as GHz where appropriate. Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'arch/arm/cpu/armv7/s5p-common')
-rw-r--r--arch/arm/cpu/armv7/s5p-common/cpu_info.c7
1 files changed, 2 insertions, 5 deletions
diff --git a/arch/arm/cpu/armv7/s5p-common/cpu_info.c b/arch/arm/cpu/armv7/s5p-common/cpu_info.c
index a8d91e769f..154d67490d 100644
--- a/arch/arm/cpu/armv7/s5p-common/cpu_info.c
+++ b/arch/arm/cpu/armv7/s5p-common/cpu_info.c
@@ -30,11 +30,8 @@ u32 get_device_type(void)
#ifdef CONFIG_DISPLAY_CPUINFO
int print_cpuinfo(void)
{
- char buf[32];
-
- printf("CPU:\t%s%X@%sMHz\n",
- s5p_get_cpu_name(), s5p_cpu_id,
- strmhz(buf, get_arm_clk()));
+ printf("CPU: %s%X @ ", s5p_get_cpu_name(), s5p_cpu_id);
+ print_freq(get_arm_clk(), "\n");
return 0;
}
OpenPOWER on IntegriCloud