fix(std_svc): continue boot if rmmd_setup fails

This patch allows the boot sequence to continue even if
rmmd_setup() fails. This allows platforms to use the same
RME-enabled image to support the scenarios where RMM image
is not present.

Change-Id: Ie4de15fb98ae7226eda410e15f1a650108dd8fb3
Signed-off-by: Varun Wadekar <vwadekar@nvidia.com>
This commit is contained in:
Varun Wadekar 2024-07-15 20:57:21 +00:00
parent adcd74ca05
commit fdd8a24b98

View file

@ -66,7 +66,7 @@ static int32_t std_svc_setup(void)
#if ENABLE_RME
if (rmmd_setup() != 0) {
ret = 1;
WARN("RMMD setup failed. Continuing boot.\n");
}
#endif