John Zhao has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/63159 )
Change subject: soc/intel/common: Add Kconfig SOC_INTEL_CSE_SET_EOP ......................................................................
soc/intel/common: Add Kconfig SOC_INTEL_CSE_SET_EOP
The do_send_end_of_post function is implemented in the cse_eop.c file. This change adds the Kconfig SOC_INTEL_CSE_SET_EOP in cse.c to avoid build issue.
Change-Id: Ib52404d9ad4c01a460e4cfef331c529d2a53337a Signed-off-by: John Zhao john.zhao@intel.com --- M src/soc/intel/common/block/cse/cse.c 1 file changed, 2 insertions(+), 1 deletion(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/59/63159/1
diff --git a/src/soc/intel/common/block/cse/cse.c b/src/soc/intel/common/block/cse/cse.c index bbd8afc..d786a65 100644 --- a/src/soc/intel/common/block/cse/cse.c +++ b/src/soc/intel/common/block/cse/cse.c @@ -1212,7 +1212,8 @@ */ static void cse_final_ready_to_boot(void) { - cse_send_end_of_post(); + if (CONFIG(SOC_INTEL_CSE_SET_EOP)) + cse_send_end_of_post();
cse_control_global_reset_lock();