From 1a0bf6e1d8fe899359535c0a0a68c2be5e5acaf4 Mon Sep 17 00:00:00 2001 From: Sieu Mun Tang Date: Tue, 22 Nov 2022 23:22:45 +0800 Subject: [PATCH] fix(intel): fix print out ERROR when encounter SEU_Err Print out ERROR message when system face encounter SEU_ERR Signed-off-by: Jit Loon Lim Signed-off-by: Sieu Mun Tang Change-Id: I744afbca23b74b164e47472039b5d6fbe5c3c764 --- plat/intel/soc/common/soc/socfpga_mailbox.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plat/intel/soc/common/soc/socfpga_mailbox.c b/plat/intel/soc/common/soc/socfpga_mailbox.c index 79817e64c..d14ac9a28 100644 --- a/plat/intel/soc/common/soc/socfpga_mailbox.c +++ b/plat/intel/soc/common/soc/socfpga_mailbox.c @@ -601,7 +601,7 @@ int intel_mailbox_get_config_status(uint32_t cmd, bool init_done) res = response[RECONFIG_STATUS_SOFTFUNC_STATUS]; if ((res & SOFTFUNC_STATUS_SEU_ERROR) != 0U) { - return MBOX_CFGSTAT_STATE_ERROR_HARDWARE; + ERROR("SoftFunction Status SEU ERROR\n"); } if ((res & SOFTFUNC_STATUS_CONF_DONE) == 0U) {