Elyes Haouas has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/81429?usp=email )
Change subject: soc/intel/common/block/cse: Remove return statment in void function ......................................................................
soc/intel/common/block/cse: Remove return statment in void function
Return statement is not useful in void function.
Change-Id: Idb8e07f48043452b329d255fe457f00317c017ae Signed-off-by: Elyes Haouas ehaouas@noos.fr --- M src/soc/intel/common/block/cse/cse_lite.c 1 file changed, 0 insertions(+), 1 deletion(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/29/81429/1
diff --git a/src/soc/intel/common/block/cse/cse_lite.c b/src/soc/intel/common/block/cse/cse_lite.c index bfa01e4..5298b31 100644 --- a/src/soc/intel/common/block/cse/cse_lite.c +++ b/src/soc/intel/common/block/cse/cse_lite.c @@ -1111,7 +1111,6 @@ * We cannot do much if CSE fails to backup the PSR data, except create an event log. */ update_psr_backup_status(PSR_BACKUP_DONE); - return; }
static void initiate_psr_data_backup(void)