mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-10 23:24:38 +00:00
driver/ddr/fsl: Fix printing unspecified module info for DDR4
The offset of module information is at 128, different from DDR3. Signed-off-by: York Sun <yorksun@freescale.com>
This commit is contained in:
parent
377ffcfabf
commit
353527d527
1 changed files with 1 additions and 1 deletions
|
@ -1579,7 +1579,7 @@ void ddr4_spd_dump(const struct ddr4_spd_eeprom_s *spd)
|
|||
printf("%-3d-%3d: ", 128, 255);
|
||||
|
||||
for (i = 128; i <= 255; i++)
|
||||
printf("%02x", spd->mod_section.uc[i - 60]);
|
||||
printf("%02x", spd->mod_section.uc[i - 128]);
|
||||
|
||||
break;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue