diff options
author | York Sun <yorksun@freescale.com> | 2012-10-08 07:44:28 +0000 |
---|---|---|
committer | Andy Fleming <afleming@freescale.com> | 2012-10-22 14:31:31 -0500 |
commit | 82968a7ab5c306291f5772b5e7cfa49d1d8bb3e6 (patch) | |
tree | fdcff16108e691584925909a5a327cf172bfbe0a /arch | |
parent | 89b78095681fd3dfd359082ba62d80551a114ab0 (diff) | |
download | u-boot-imx-82968a7ab5c306291f5772b5e7cfa49d1d8bb3e6.zip u-boot-imx-82968a7ab5c306291f5772b5e7cfa49d1d8bb3e6.tar.gz u-boot-imx-82968a7ab5c306291f5772b5e7cfa49d1d8bb3e6.tar.bz2 |
powerpc/mpc8xxx: Fix DDR SPD failed message
Since empty DIMM slot is allowed on other than the first slot, remove the
error message if SPD is not found in this case.
Signed-off-by: York Sun <yorksun@freescale.com>
Signed-off-by: Andy Fleming <afleming@freescale.com>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/powerpc/cpu/mpc8xxx/ddr/main.c | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/arch/powerpc/cpu/mpc8xxx/ddr/main.c b/arch/powerpc/cpu/mpc8xxx/ddr/main.c index 2885906..d6b73c7 100644 --- a/arch/powerpc/cpu/mpc8xxx/ddr/main.c +++ b/arch/powerpc/cpu/mpc8xxx/ddr/main.c @@ -77,7 +77,19 @@ static void __get_spd(generic_spd_eeprom_t *spd, u8 i2c_address) sizeof(generic_spd_eeprom_t)); if (ret) { - printf("DDR: failed to read SPD from address %u\n", i2c_address); + if (i2c_address == +#ifdef SPD_EEPROM_ADDRESS + SPD_EEPROM_ADDRESS +#elif defined(SPD_EEPROM_ADDRESS1) + SPD_EEPROM_ADDRESS1 +#endif + ) { + printf("DDR: failed to read SPD from address %u\n", + i2c_address); + } else { + debug("DDR: failed to read SPD from address %u\n", + i2c_address); + } memset(spd, 0, sizeof(generic_spd_eeprom_t)); } } |