From 55d1adc983571390c350b52c78c69a1b1bb2a195 Mon Sep 17 00:00:00 2001 From: Lee Leahy Date: Tue, 31 May 2016 18:12:53 -0700 Subject: [PATCH] UPSTREAM: drivers/intel/fsp1_1: Update weak MRC cache routines Update the weak functions for the MRC cache. TEST=Build and run on Galileo Gen2 Change-Id: I54a1252cfff1a2f68b163f0feb65e2bceb37f6a9 Signed-off-by: Lee Leahy Reviewed-on: https://review.coreboot.org/15042 Tested-by: build bot (Jenkins) Reviewed-by: Aaron Durbin Reviewed-on: https://chromium-review.googlesource.com/349012 Commit-Ready: Aaron Durbin Tested-by: Aaron Durbin --- src/drivers/intel/fsp1_1/romstage.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/drivers/intel/fsp1_1/romstage.c b/src/drivers/intel/fsp1_1/romstage.c index c035f606f7..6584c55b31 100644 --- a/src/drivers/intel/fsp1_1/romstage.c +++ b/src/drivers/intel/fsp1_1/romstage.c @@ -364,15 +364,16 @@ __attribute__((weak)) void mainboard_add_dimm_info( } /* Get the memory configuration data */ -__attribute__((weak)) int mrc_cache_get_current( - const struct mrc_saved_data **cache) +__attribute__((weak)) int mrc_cache_get_current_with_version( + const struct mrc_saved_data **cache, uint32_t version) { printk(BIOS_DEBUG, "WEAK: %s/%s called\n", __FILE__, __func__); return -1; } /* Save the memory configuration data */ -__attribute__((weak)) int mrc_cache_stash_data(const void *data, size_t size) +__attribute__((weak)) int mrc_cache_stash_data_with_version(const void *data, + size_t size, uint32_t version) { printk(BIOS_DEBUG, "WEAK: %s/%s called\n", __FILE__, __func__); return -1;