diff options
Diffstat (limited to 'src/mainboard/lenovo/t520')
-rw-r--r-- | src/mainboard/lenovo/t520/romstage.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mainboard/lenovo/t520/romstage.c b/src/mainboard/lenovo/t520/romstage.c index 34171e0a7b..5ba487321c 100644 --- a/src/mainboard/lenovo/t520/romstage.c +++ b/src/mainboard/lenovo/t520/romstage.c @@ -78,9 +78,9 @@ const struct southbridge_usb_port mainboard_usb_ports[] = { { 1, 1, -1 }, /* P13: CAMERA (LCD), no OC */ }; -void mainboard_get_spd(spd_raw_data *spd) { - read_spd (&spd[0], 0x50); - read_spd (&spd[2], 0x51); +void mainboard_get_spd(spd_raw_data *spd, bool id_only) { + read_spd (&spd[0], 0x50, id_only); + read_spd (&spd[2], 0x51, id_only); } void mainboard_early_init(int s3resume) { |