From 2a3c34a58c057a167bfb54bba6745b8b85d55121 Mon Sep 17 00:00:00 2001 From: Yong Cong Sin Date: Mon, 16 Oct 2023 22:33:47 +0800 Subject: [PATCH] build: namespace the generated `version.h` Zephyr's build time generated `version.h` is now in the `zephyr` to provide proper namespace, update the includes of this module accordingly. Signed-off-by: Yong Cong Sin --- src/init/init.c | 2 +- src/trace/dma-trace.c | 2 +- zephyr/lib/alloc.c | 2 +- zephyr/lib/cpu.c | 2 +- zephyr/wrapper.c | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/init/init.c b/src/init/init.c index cdfa2b6ef794..af854921271d 100644 --- a/src/init/init.c +++ b/src/init/init.c @@ -38,7 +38,7 @@ #include #include #include -#include +#include #endif #include diff --git a/src/trace/dma-trace.c b/src/trace/dma-trace.c index 9d4351c8e8d0..f8aa1c2f96ff 100644 --- a/src/trace/dma-trace.c +++ b/src/trace/dma-trace.c @@ -29,7 +29,7 @@ #include #ifdef __ZEPHYR__ -#include +#include #endif #include diff --git a/zephyr/lib/alloc.c b/zephyr/lib/alloc.c index f20e125e9246..4507fd7287ea 100644 --- a/zephyr/lib/alloc.c +++ b/zephyr/lib/alloc.c @@ -23,7 +23,7 @@ #include #include #include -#include +#include #include #include diff --git a/zephyr/lib/cpu.c b/zephyr/lib/cpu.c index 3dde19dc38bc..6d46fd9d123f 100644 --- a/zephyr/lib/cpu.c +++ b/zephyr/lib/cpu.c @@ -17,7 +17,7 @@ #include /* Zephyr includes */ -#include +#include #include #include #include diff --git a/zephyr/wrapper.c b/zephyr/wrapper.c index 0d4644ffdfb2..d912e3d8aba2 100644 --- a/zephyr/wrapper.c +++ b/zephyr/wrapper.c @@ -29,7 +29,7 @@ #include #include #include -#include +#include #include #include #include