Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/audio/module_adapter/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,7 @@ if(zephyr) ### Zephyr ###

zephyr_library_sources_ifdef(CONFIG_SOF_USERSPACE_PROXY
library/userspace_proxy.c
library/userspace_proxy_user.c
)

zephyr_library_sources_ifdef(CONFIG_PASSTHROUGH_CODEC
Expand Down
3 changes: 2 additions & 1 deletion src/audio/module_adapter/iadk/system_agent.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
#include <stddef.h>
#include <stdint.h>
#include <rtos/string.h>
#include <rtos/userspace_helper.h>
#include <utilities/array.h>
#include <module/iadk/adsp_error_code.h>
#include <system_service.h>
Expand All @@ -38,7 +39,7 @@ namespace system
{

/* Structure storing handles to system service operations */
const AdspSystemService SystemAgent::system_service_ = {
const APP_TASK_DATA AdspSystemService SystemAgent::system_service_ = {
native_system_service_log_message,
native_system_service_safe_memcpy,
native_system_service_safe_memmove,
Expand Down
3 changes: 2 additions & 1 deletion src/audio/module_adapter/library/native_system_service.c
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
#include <native_system_service.h>
#include <sof/lib_manager.h>
#include <module/module/logger.h>
#include <rtos/userspace_helper.h>

#define RSIZE_MAX 0x7FFFFFFF

Expand Down Expand Up @@ -162,7 +163,7 @@ AdspErrorCode native_system_service_get_interface(enum interface_id id,
return ADSP_NO_ERROR;
}

const struct native_system_service native_system_service = {
const APP_TASK_DATA struct native_system_service native_system_service = {
.basic = {
.log_message = native_system_service_log_message,
.safe_memcpy = native_system_service_safe_memcpy,
Expand Down
Loading
Loading