From f60868f08410940d541c241646fd4e2a179fb73d Mon Sep 17 00:00:00 2001 From: Sebastien Bourdeauducq Date: Wed, 29 Apr 2015 12:57:09 +0800 Subject: [PATCH] runtime/kloader: clear kernel-CPU mailbox on stop to avoid fake spurious messages --- soc/runtime/kloader.c | 1 + 1 file changed, 1 insertion(+) diff --git a/soc/runtime/kloader.c b/soc/runtime/kloader.c index cb0133c27..715caf8d4 100644 --- a/soc/runtime/kloader.c +++ b/soc/runtime/kloader.c @@ -102,4 +102,5 @@ void kloader_start_idle_kernel(void) void kloader_stop_kernel(void) { kernel_cpu_reset_write(1); + mailbox_acknowledge(); }