From 1eafb5bfa2bbd1c317635e56563debfb0ed46fce Mon Sep 17 00:00:00 2001 From: Yong Cong Sin Date: Thu, 7 Dec 2023 15:20:21 +0800 Subject: [PATCH] zephyr: 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 b919f873bf36..8a630569cd74 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