soc/intel/skylake: Remove redundant BootLoaderTolumSize assignment

BootLoaderTolumSize FSP-M UPD is already initialized with cbmem_overhead_size()
inside driver/fsp2_0/memory_init.c, hence remove the duplicate assignment.

Change-Id: I0b1d9769cd2a863bf0547ce5f44928cacc5a63b6
Signed-off-by: Subrata Banik <subrata.banik@intel.com>
Reviewed-on: https://review.coreboot.org/17721
Tested-by: build bot (Jenkins)
Reviewed-by: Aaron Durbin <adurbin@chromium.org>
This commit is contained in:
Subrata Banik 2016-12-05 19:15:17 +05:30 committed by Martin Roth
parent 00563bf054
commit 847da79383
1 changed files with 0 additions and 4 deletions

View File

@ -163,10 +163,6 @@ void platform_fsp_memory_init_params_cb(FSPM_UPD *mupd, uint32_t version)
m_t_cfg->DidInitStat = 0x01;
mainboard_memory_init_params(mupd);
/* Reserve enough memory under TOLUD to save CBMEM header */
mupd->FspmArchUpd.BootLoaderTolumSize = cbmem_overhead_size();
}
__attribute__((weak)) void mainboard_memory_init_params(FSPM_UPD *mupd)