From 0fcf38c3b00d5c676b7f671d161ef327c93c4cdf Mon Sep 17 00:00:00 2001 From: Kai Vehmanen Date: Fri, 18 Oct 2024 16:12:15 +0300 Subject: [PATCH] zephyr: rtos: properly include sof/lib/memory.h The alloc.h header depends on PLATFORM_DCACHE_ALIGN, but does not include sof/lib/memory.h, but relies for the definition to be available indirectly. Fix this and make the include statement explicit. Signed-off-by: Kai Vehmanen --- zephyr/include/rtos/alloc.h | 1 + 1 file changed, 1 insertion(+) diff --git a/zephyr/include/rtos/alloc.h b/zephyr/include/rtos/alloc.h index 509c691e3964..69228ea8f9c2 100644 --- a/zephyr/include/rtos/alloc.h +++ b/zephyr/include/rtos/alloc.h @@ -8,6 +8,7 @@ #include #include +#include /* PLATFORM_DCACHE_ALIGN */ #include #include