soc/intel/fsp_broadwell_de/romstage: Remove variable set but not used

Change-Id: I3e304b9b19978c4100ef3486088d809c2a7fe1d7
Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/32898
Reviewed-by: Patrick Rudolph <siro@das-labor.org>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
This commit is contained in:
Elyes HAOUAS 2019-05-20 18:59:28 +02:00 committed by Patrick Georgi
parent f00d37342c
commit 83339ab3eb
1 changed files with 1 additions and 2 deletions

View File

@ -94,7 +94,6 @@ void *asmlinkage main(FSP_INFO_HEADER *fsp_info_header)
*/
void romstage_main_continue(EFI_STATUS status, void *hob_list_ptr)
{
int cbmem_was_initted;
void *cbmem_hob_ptr;
post_code(0x4a);
@ -113,7 +112,7 @@ void romstage_main_continue(EFI_STATUS status, void *hob_list_ptr)
late_mainboard_romstage_entry();
post_code(0x4d);
cbmem_was_initted = !cbmem_recovery(0);
cbmem_recovery(0);
/* Save the HOB pointer in CBMEM to be used in ramstage*/
cbmem_hob_ptr = cbmem_add(CBMEM_ID_HOB_POINTER, sizeof(*hob_list_ptr));