From ee7c13d7b765d8e0852e5b06b87ce67c5a734898 Mon Sep 17 00:00:00 2001 From: Kai Vehmanen Date: Thu, 29 Jan 2026 16:40:33 +0200 Subject: [PATCH] schedule: rename ll_schedule.c to ll_schedule_xtos.c The scheduler implementation in ll_schedule.c implements a low-latency (LL) scheduler using old XTOS interfaces. The code has been modified so it can be used with Zephyr using the SOF rtos/ interface. The code is only used by one build target at this point and it should not be used for new targets. To make it clear this is not the primary implementation, rename the file with a "xtos" postfix. Signed-off-by: Kai Vehmanen --- src/schedule/CMakeLists.txt | 2 +- src/schedule/{ll_schedule.c => ll_schedule_xtos.c} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename src/schedule/{ll_schedule.c => ll_schedule_xtos.c} (100%) diff --git a/src/schedule/CMakeLists.txt b/src/schedule/CMakeLists.txt index 0ac7094f8630..bc14c6ecff46 100644 --- a/src/schedule/CMakeLists.txt +++ b/src/schedule/CMakeLists.txt @@ -29,7 +29,7 @@ if (CONFIG_SOC_ACP_6_0) ) else() zephyr_library_sources( - ll_schedule.c + ll_schedule_xtos.c ) endif() else() diff --git a/src/schedule/ll_schedule.c b/src/schedule/ll_schedule_xtos.c similarity index 100% rename from src/schedule/ll_schedule.c rename to src/schedule/ll_schedule_xtos.c