aboutsummaryrefslogtreecommitdiff
path: root/src/mainboard/lenovo/t410
diff options
context:
space:
mode:
authorPatrick Rudolph <patrick.rudolph@9elements.com>2019-11-21 09:30:21 +0100
committerPatrick Georgi <pgeorgi@google.com>2019-11-22 10:40:13 +0000
commit07b402b3b9a54551201c66c0c9d7d6e393d57a74 (patch)
tree83b29a2c7755e6f2f44d1dac63b614bbe75f6494 /src/mainboard/lenovo/t410
parent5a0edcbde1537ad9d4d94b0e5f355454c8e597cf (diff)
mb/lenovo/t410: Fix I2C SPD address
Use correct address for second DIMM. Tested on Lenovo T410: * Both DIMMs are found and are usable Change-Id: I8bace47f04a0e185c2901695879d4d4e12d4ce6a Signed-off-by: Patrick Rudolph <patrick.rudolph@9elements.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/37105 Reviewed-by: Arthur Heymans <arthur@aheymans.xyz> Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/mainboard/lenovo/t410')
-rw-r--r--src/mainboard/lenovo/t410/romstage.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mainboard/lenovo/t410/romstage.c b/src/mainboard/lenovo/t410/romstage.c
index 7c796de8ee..4908ec5e02 100644
--- a/src/mainboard/lenovo/t410/romstage.c
+++ b/src/mainboard/lenovo/t410/romstage.c
@@ -71,5 +71,5 @@ void mainboard_pre_raminit(void)
void mainboard_get_spd_map(u8 *spd_addrmap)
{
spd_addrmap[0] = 0x50;
- spd_addrmap[2] = 0x52;
+ spd_addrmap[2] = 0x51;
}