diff options
author | Kyösti Mälkki <kyosti.malkki@gmail.com> | 2016-06-23 14:00:51 +0300 |
---|---|---|
committer | Kyösti Mälkki <kyosti.malkki@gmail.com> | 2016-06-23 21:53:04 +0200 |
commit | f359997f8632a4a81ee39fc27f79f5e27ab072eb (patch) | |
tree | e416aadac7ad170d17d8cb272bf1b885b1dd9b7a /src/mainboard | |
parent | 0306e6a8bf487ed7eefebac09a077014c03b1cc2 (diff) | |
download | coreboot-f359997f8632a4a81ee39fc27f79f5e27ab072eb.tar.xz |
samsung/lumpy: Fix build with System Agent blob
Broken with commit:
2585209 mb/samsung/lumpy/romstage: read SPD data of removable DIMM
The blob can pick SPDs from the addresses defined in pei_data
and we do only define read_spd() with USE_NATIVE_RAMINIT.
Change-Id: Ibd6d7a4a53fa808b476d3060872cb10d3dfce534
Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com>
Reviewed-on: https://review.coreboot.org/15329
Tested-by: build bot (Jenkins)
Reviewed-by: Aaron Durbin <adurbin@chromium.org>
Reviewed-by: Patrick Rudolph <siro@das-labor.org>
Diffstat (limited to 'src/mainboard')
-rw-r--r-- | src/mainboard/samsung/lumpy/romstage.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/mainboard/samsung/lumpy/romstage.c b/src/mainboard/samsung/lumpy/romstage.c index 4d318b7069..918c73a89f 100644 --- a/src/mainboard/samsung/lumpy/romstage.c +++ b/src/mainboard/samsung/lumpy/romstage.c @@ -216,8 +216,6 @@ void mainboard_fill_pei_data(struct pei_data *pei_data) *pei_data = pei_data_template; // leave onboard dimm address at f0, and copy spd data there. memcpy(pei_data->spd_data[0], locate_spd(), 256); - /* read removable dimm spd */ - read_spd(&pei_data->spd_data[2], 0x50); } const struct southbridge_usb_port mainboard_usb_ports[] = { |