Subrata Banik has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/63405 )
Change subject: soc/intel/cse: Allow calling all functions associated with `cse_final` ......................................................................
soc/intel/cse: Allow calling all functions associated with `cse_final`
This patch fixes a problem where `cse_final` only calls into 1 function from available `notify_func` lists.
BUG=b:211954778 TEST=Able to execute `cse_final_end_of_firmware` function as part of `cse_final` call.
Signed-off-by: Subrata Banik subratabanik@google.com Change-Id: I04d8c9c1213ddeb9ed85473e62fcca298c0d5172 --- M src/soc/intel/common/block/cse/cse.c 1 file changed, 1 insertion(+), 1 deletion(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/05/63405/1
diff --git a/src/soc/intel/common/block/cse/cse.c b/src/soc/intel/common/block/cse/cse.c index d786a65..32b7f20 100644 --- a/src/soc/intel/common/block/cse/cse.c +++ b/src/soc/intel/common/block/cse/cse.c @@ -1254,7 +1254,7 @@ { for (size_t i = 0; i < ARRAY_SIZE(notify_data); i++) { if (!notify_data[i].skip) - return notify_data[i].notify_func(); + notify_data[i].notify_func(); } }