From 6dfb16a3d93307b9abd8155eac61f387f8b4afb9 Mon Sep 17 00:00:00 2001 From: Andy Ross Date: Wed, 15 Dec 2021 10:05:23 -0800 Subject: [PATCH] arch/xtensa: Fix cache.h include dependency This file started using ALWAYS_INLINE from but didn't include it. Transitive inclusions were hiding the problem most places, but at least one test case exposes it. Signed-off-by: Andy Ross --- include/arch/xtensa/cache.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/arch/xtensa/cache.h b/include/arch/xtensa/cache.h index b8510d88ac2..12dc2c60065 100644 --- a/include/arch/xtensa/cache.h +++ b/include/arch/xtensa/cache.h @@ -6,6 +6,7 @@ #define ZEPHYR_INCLUDE_ARCH_XTENSA_CACHE_H_ #include +#include #include #ifdef __cplusplus