Skip to content
Snippets Groups Projects
Commit d4c711f0 authored by York Sun's avatar York Sun Committed by York Sun
Browse files

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>
parent 27df54b1
No related branches found
No related tags found
No related merge requests found
...@@ -394,8 +394,8 @@ int print_cpuinfo(void) ...@@ -394,8 +394,8 @@ int print_cpuinfo(void)
} }
printf("\n Bus: %-4s MHz ", printf("\n Bus: %-4s MHz ",
strmhz(buf, sysinfo.freq_systembus)); strmhz(buf, sysinfo.freq_systembus));
printf("DDR: %-4s MHz", strmhz(buf, sysinfo.freq_ddrbus)); printf("DDR: %-4s MT/s", strmhz(buf, sysinfo.freq_ddrbus));
printf(" DP-DDR: %-4s MHz", strmhz(buf, sysinfo.freq_ddrbus2)); printf(" DP-DDR: %-4s MT/s", strmhz(buf, sysinfo.freq_ddrbus2));
puts("\n"); puts("\n");
/* Display the RCW, so that no one gets confused as to what RCW /* Display the RCW, so that no one gets confused as to what RCW
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment