diff options
author | Angel Pons <th3fanbus@gmail.com> | 2021-06-23 14:29:12 +0200 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2021-08-27 16:04:33 +0000 |
commit | 2d45322639b4bc2796040c7b7417b7a2a45d700b (patch) | |
tree | ac7fae631651b377e4061dc53609a17022fa7fd6 /src/soc/intel | |
parent | 2bc7a6b3d2c68fd820a9390efedc44a3d632ab26 (diff) |
broadwell: Drop weak `mainboard_fill_spd_data` definition
Make `mainboard_fill_spd_data` mandatory and adapt mainboards to define
this function accordingly.
Change-Id: Ic18c4c574e8c963bbb41c980f43bdbacc57735af
Signed-off-by: Angel Pons <th3fanbus@gmail.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/55806
Reviewed-by: Felix Held <felix-coreboot@felixheld.de>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/soc/intel')
-rw-r--r-- | src/soc/intel/broadwell/raminit.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/soc/intel/broadwell/raminit.c b/src/soc/intel/broadwell/raminit.c index 6254071ac8..28b3f37ed9 100644 --- a/src/soc/intel/broadwell/raminit.c +++ b/src/soc/intel/broadwell/raminit.c @@ -177,10 +177,6 @@ static void setup_sdram_meminfo(struct pei_data *pei_data) } } -__weak void mainboard_fill_spd_data(struct pei_data *pei_data) -{ -} - void perform_raminit(const struct chipset_power_state *const power_state) { const int s3resume = power_state->prev_sleep_state == ACPI_S3; |