summaryrefslogtreecommitdiffstats
path: root/src/mainboard/google/auron/variants/buddy/spd/spd.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mainboard/google/auron/variants/buddy/spd/spd.c')
-rw-r--r--src/mainboard/google/auron/variants/buddy/spd/spd.c9
1 files changed, 3 insertions, 6 deletions
diff --git a/src/mainboard/google/auron/variants/buddy/spd/spd.c b/src/mainboard/google/auron/variants/buddy/spd/spd.c
index 5281d82a4f4d..020bb8b46e63 100644
--- a/src/mainboard/google/auron/variants/buddy/spd/spd.c
+++ b/src/mainboard/google/auron/variants/buddy/spd/spd.c
@@ -1,12 +1,9 @@
/* SPDX-License-Identifier: GPL-2.0-only */
-#include <mainboard/google/auron/variant.h>
-#include <soc/pei_data.h>
#include <soc/pei_wrapper.h>
-/* Copy SPD data for on-board memory */
-void mainboard_fill_spd_data(struct pei_data *pei_data)
+void mb_get_spd_map(struct spd_info *spdi)
{
- pei_data->spd_addresses[0] = 0xa0;
- pei_data->spd_addresses[2] = 0xa4;
+ spdi->addresses[0] = 0x50;
+ spdi->addresses[2] = 0x52;
}