Browse Source

Merge "fix(intel): fix print out ERROR when encounter SEU_Err" into integration

Sandrine Bailleux 1 year ago
parent
commit
bf09c416ab
1 changed files with 1 additions and 1 deletions
  1. 1 1
      plat/intel/soc/common/soc/socfpga_mailbox.c

+ 1 - 1
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) {