fix(a3k): change fatal error to warning when CM3 reset is not implemented

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 <pali@kernel.org>
Change-Id: I7303197373e1a8ca5a44ba0b1e90b48855d6c0c3
This commit is contained in:
Pali Rohár 2022-03-12 12:45:56 +01:00
parent 29ba22e8ed
commit 30cdbe7043
1 changed files with 1 additions and 1 deletions

View File

@ -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");
}