From 1423118ae5d293664923b9950461810b411a6ac6 Mon Sep 17 00:00:00 2001 From: Kai Vehmanen Date: Fri, 18 Oct 2024 16:10:27 +0300 Subject: [PATCH] init: fix header path for sof/lib/mailbox.h It's not legal to include platform/lib/mailbox.h directly. Fix the code to include sof/lib/mailbox.h. This has worked only because the mailbox header is included indirectly by other headers. Signed-off-by: Kai Vehmanen --- src/init/init.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/init/init.c b/src/init/init.c index 77665faee975..738ce9233e69 100644 --- a/src/init/init.c +++ b/src/init/init.c @@ -34,7 +34,7 @@ #include #if CONFIG_IPC_MAJOR_4 #include -#include +#include #endif #ifdef CONFIG_ZEPHYR_LOG #include