From 30cdbe7043832f7bd96b40294ac062a8fc9c540f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pali=20Roh=C3=A1r?= Date: Sat, 12 Mar 2022 12:45:56 +0100 Subject: [PATCH] fix(a3k): change fatal error to warning when CM3 reset is not implemented MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This allows TF-A's a3700_system_reset() function to try Warm reset method when CM3 reset method is not implemented by WTMI firmware. Signed-off-by: Pali Rohár Change-Id: I7303197373e1a8ca5a44ba0b1e90b48855d6c0c3 --- plat/marvell/armada/a3k/common/cm3_system_reset.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plat/marvell/armada/a3k/common/cm3_system_reset.c b/plat/marvell/armada/a3k/common/cm3_system_reset.c index 548ff5168..f105d5990 100644 --- a/plat/marvell/armada/a3k/common/cm3_system_reset.c +++ b/plat/marvell/armada/a3k/common/cm3_system_reset.c @@ -58,5 +58,5 @@ void cm3_system_reset(void) } /* If we reach here, the command is not implemented. */ - ERROR("System reset command not implemented in WTMI firmware!\n"); + WARN("System reset command not implemented in WTMI firmware!\n"); }