From f2801f455c1968451c0bbe13213743c5a4887ad4 Mon Sep 17 00:00:00 2001 From: Tim Wawrzynczak Date: Tue, 22 Jun 2021 11:25:14 -0600 Subject: [PATCH] soc/intel/common: Unbreak master MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Commit 54b03569c moved a call to cse_trigger_recovery () around, and commit 09635f418 renamed the function, but was tested before the first commit was submitted, thus breaking the tree. Fix it. Change-Id: If21ea0c1ebf9ce85c59ee25ec7f879abde2e3259 Signed-off-by: Tim Wawrzynczak Reviewed-on: https://review.coreboot.org/c/coreboot/+/55766 Reviewed-by: Kyösti Mälkki Reviewed-by: Furquan Shaikh Reviewed-by: Felix Held Tested-by: build bot (Jenkins) --- src/soc/intel/common/block/cse/cse_lite.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/soc/intel/common/block/cse/cse_lite.c b/src/soc/intel/common/block/cse/cse_lite.c index 517550dbb9..15d585d723 100644 --- a/src/soc/intel/common/block/cse/cse_lite.c +++ b/src/soc/intel/common/block/cse/cse_lite.c @@ -743,7 +743,7 @@ void cse_fw_sync(void) } if (!cse_is_rw_bp_status_valid(&cse_bp_info.bp_info)) - cse_trigger_recovery(CSE_LITE_SKU_RW_JUMP_ERROR); + cse_trigger_vboot_recovery(CSE_LITE_SKU_RW_JUMP_ERROR); if (!cse_boot_to_rw(&cse_bp_info.bp_info)) { printk(BIOS_ERR, "cse_lite: Failed to switch to RW\n");