]> git.baikalelectronics.ru Git - arm-tf.git/commitdiff
fix(a3k): change fatal error to warning when CM3 reset is not implemented
authorPali Rohár <pali@kernel.org>
Sat, 12 Mar 2022 11:45:56 +0000 (12:45 +0100)
committerPali Rohár <pali@kernel.org>
Wed, 16 Mar 2022 10:42:47 +0000 (11:42 +0100)
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

plat/marvell/armada/a3k/common/cm3_system_reset.c

index 548ff516862567eb0aea10ee5a16e90e4ce270ac..f105d59902b42e6912ae97f95f1f3dec6f8469c9 100644 (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");
 }