From 2c5e6521c7e006aca75bd6dff741080d3520da50 Mon Sep 17 00:00:00 2001 From: Adrian Warecki Date: Thu, 11 Dec 2025 13:08:13 +0100 Subject: [PATCH] userspace: proxy: Fix typo in variable name Fix typo in variable name from heap_part_cached to heap_cached_part. Fixes #10431 Signed-off-by: Adrian Warecki --- src/audio/module_adapter/library/userspace_proxy.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/audio/module_adapter/library/userspace_proxy.c b/src/audio/module_adapter/library/userspace_proxy.c index d6b1516dfb3c..a7bfca2bb74a 100644 --- a/src/audio/module_adapter/library/userspace_proxy.c +++ b/src/audio/module_adapter/library/userspace_proxy.c @@ -74,7 +74,7 @@ static int userspace_proxy_memory_init(struct userspace_context *user, struct k_mem_partition *parts_ptr[] = { #ifdef HEAP_PART_CACHED - &heap_part_cached, + &heap_cached_part, #endif &heap_part };