diff options
author | Tim Wawrzynczak <twawrzynczak@chromium.org> | 2021-06-22 11:25:14 -0600 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2021-06-22 18:11:26 +0000 |
commit | f2801f455c1968451c0bbe13213743c5a4887ad4 (patch) | |
tree | 61541b41e252844bf6799da83cb9dfe98e00fc78 /src/soc/intel | |
parent | 09635f418b7e907f79bb26cc55d7fab14078ba64 (diff) |
soc/intel/common: Unbreak master
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 <twawrzynczak@chromium.org>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/55766
Reviewed-by: Kyösti Mälkki <kyosti.malkki@gmail.com>
Reviewed-by: Furquan Shaikh <furquan@google.com>
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/common/block/cse/cse_lite.c | 2 |
1 files changed, 1 insertions, 1 deletions
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"); |