aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSandrine Bailleux <sandrine.bailleux@arm.com>2022-11-28 15:08:25 +0100
committerTrustedFirmware Code Review <review@review.trustedfirmware.org>2022-11-28 15:08:25 +0100
commitbf09c416ab167d90159d8bc0c3fd2c9df93c3559 (patch)
treeb2f6fd7599869ccee8d7329a3c99fb52a9fad06d
parent086d981657cb27dcbb7ee15eabcc7128e543bd41 (diff)
parent1a0bf6e1d8fe899359535c0a0a68c2be5e5acaf4 (diff)
downloadtrusted-firmware-a-bf09c416ab167d90159d8bc0c3fd2c9df93c3559.tar.gz
Merge "fix(intel): fix print out ERROR when encounter SEU_Err" into integration
-rw-r--r--plat/intel/soc/common/soc/socfpga_mailbox.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/plat/intel/soc/common/soc/socfpga_mailbox.c b/plat/intel/soc/common/soc/socfpga_mailbox.c
index 79817e64c5..d14ac9a284 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) {