From 3c9d58df34892776a399a0e56db0ea45fbbe72c6 Mon Sep 17 00:00:00 2001 From: Daniel Baluta Date: Tue, 28 Nov 2023 20:55:34 +0200 Subject: [PATCH] include: sof: common.h Fix compilation error MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Commit 16d126a36fd821 ("audio: Header files cleanup") removed rtos/panic.h include but this is still needed. Otherwise, we get the following compilation error: /work/repos/sof/src/lib/lib.c: In function ‘memset’: /work/repos/sof/src/lib/lib.c:31: warning: implicit declaration of function ‘sof_panic’ Fixes: 16d126a36fd821 ("audio: Header files cleanup") Signed-off-by: Daniel Baluta (cherry picked from commit a4a3b3aed9c9a78087a0c796827ec608d0cd621c) --- src/include/sof/common.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/include/sof/common.h b/src/include/sof/common.h index 5c10ba049716..6a875f5a90f7 100644 --- a/src/include/sof/common.h +++ b/src/include/sof/common.h @@ -27,6 +27,7 @@ #if !defined(__ASSEMBLER__) && defined(__XTENSA__) #include +#include #define VERIFY_ALIGN #endif