From 18c574c7f311f1a38aebc2874f45240fe80694b2 Mon Sep 17 00:00:00 2001 From: Kai Vehmanen Date: Tue, 8 Oct 2024 16:10:45 +0300 Subject: [PATCH] rtos: add Zephyr implementation of sof/lib/memory.h Implement sof/lib/memory.h for Zephyr build and do not rely on the xtos version for Zephyr builds. Link: https://github.com/thesofproject/sof/issues/9015 Signed-off-by: Kai Vehmanen --- zephyr/include/sof/lib/memory.h | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 zephyr/include/sof/lib/memory.h diff --git a/zephyr/include/sof/lib/memory.h b/zephyr/include/sof/lib/memory.h new file mode 100644 index 000000000..8cde3c0f5 --- /dev/null +++ b/zephyr/include/sof/lib/memory.h @@ -0,0 +1,11 @@ +/* SPDX-License-Identifier: BSD-3-Clause + * + * Copyright(c) 2024 Intel Corporation. + */ + +#ifndef __SOF_LIB_MEMORY_H__ +#define __SOF_LIB_MEMORY_H__ + +#include + +#endif /* __SOF_LIB_MEMORY_H__ */