diff options
author | York Sun <yorksun at freescale.com> | 2015-05-28 09:24:05 (GMT) |
---|---|---|
committer | York Sun <yorksun@freescale.com> | 2015-07-20 18:44:34 (GMT) |
commit | d4c711f0ad20f30ee299f3d100366e9029d17c24 (patch) | |
tree | 35f3ac136d80b75f9ec8559b9b505ec8e562ba6e | |
parent | 27df54b16390416190cb799de389955d9e0d7b12 (diff) | |
download | u-boot-fsl-qoriq-d4c711f0ad20f30ee299f3d100366e9029d17c24.tar.xz |
armv8/fsl-lsch3: Fix DDR speed message
DDR speed should be in MT/s, not MHz.
Signed-off-by: York Sun <yorksun at freescale.com>
Signed-off-by: Prabhakar Kushwaha <prabhakar at freescale.com>
-rw-r--r-- | arch/arm/cpu/armv8/fsl-lsch3/cpu.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/arm/cpu/armv8/fsl-lsch3/cpu.c b/arch/arm/cpu/armv8/fsl-lsch3/cpu.c index 6714577..19c3995 100644 --- a/arch/arm/cpu/armv8/fsl-lsch3/cpu.c +++ b/arch/arm/cpu/armv8/fsl-lsch3/cpu.c @@ -394,8 +394,8 @@ int print_cpuinfo(void) } printf("\n Bus: %-4s MHz ", strmhz(buf, sysinfo.freq_systembus)); - printf("DDR: %-4s MHz", strmhz(buf, sysinfo.freq_ddrbus)); - printf(" DP-DDR: %-4s MHz", strmhz(buf, sysinfo.freq_ddrbus2)); + printf("DDR: %-4s MT/s", strmhz(buf, sysinfo.freq_ddrbus)); + printf(" DP-DDR: %-4s MT/s", strmhz(buf, sysinfo.freq_ddrbus2)); puts("\n"); /* Display the RCW, so that no one gets confused as to what RCW |