mirror of
https://github.com/Fishwaldo/u-boot.git
synced 2025-06-05 22:31:36 +00:00
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>
This commit is contained in:
parent
27df54b163
commit
d4c711f0ad
1 changed files with 2 additions and 2 deletions
|
@ -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
|
||||||
|
|
Loading…
Add table
Reference in a new issue