From 7a69b754e889d46056cb2c5ffa0a0961ff3d92af Mon Sep 17 00:00:00 2001 From: Kai Vehmanen Date: Mon, 1 Dec 2025 15:17:11 +0200 Subject: [PATCH] lib: fast-get: fix userspace build CONFIG_SOF was removed in upstream Zephyr and this broke builds with user-space overlay. Fixes: 60780a61c4bc ("west.yml: update zephyr to f3b9d1871104") Signed-off-by: Kai Vehmanen --- src/include/sof/lib/fast-get.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/include/sof/lib/fast-get.h b/src/include/sof/lib/fast-get.h index 72e60a8a68a3..36232cfbb3d6 100644 --- a/src/include/sof/lib/fast-get.h +++ b/src/include/sof/lib/fast-get.h @@ -12,7 +12,7 @@ struct k_heap; -#if defined(__ZEPHYR__) && defined(CONFIG_SOF) +#if defined(__ZEPHYR__) && defined(CONFIG_SOF_FULL_ZEPHYR_APPLICATION) #include __syscall const void *fast_get(struct k_heap *heap, const void * const dram_ptr, size_t size);