We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4d28376 commit 9b3faf9Copy full SHA for 9b3faf9
2 files changed
src/audio/module_adapter/library/userspace_proxy.c
@@ -480,7 +480,7 @@ static int userspace_proxy_init(struct processing_module *mod)
480
return ret;
481
482
if (params->ext.agent.start_fn == system_agent_start)
483
- module_set_private_data(mod, params->ext.agent.out_interface);
+ module_set_private_data(mod, (void*)params->ext.agent.out_interface);
484
else
485
mod->user_ctx->interface = params->ext.agent.out_interface;
486
}
src/include/sof/audio/module_adapter/library/userspace_proxy_user.h
@@ -13,7 +13,7 @@ struct module_agent_params {
13
system_agent_start_fn start_fn;
14
struct system_agent_params params;
15
byte_array_t mod_cfg;
16
- void *out_interface;
+ const void *out_interface;
17
};
18
19
struct module_large_cfg_set_params {
0 commit comments