Skip to content

Commit d37d689

Browse files
committed
modules: Remove unused module_entry_point from module_data
The value assigned to the module_entry_point field in the module_data structure wasn't used anywhere. This field has been removed. Signed-off-by: Adrian Warecki <adrian.warecki@intel.com>
1 parent 87f5e3e commit d37d689

File tree

2 files changed

+0
-2
lines changed

2 files changed

+0
-2
lines changed

src/audio/module_adapter/module/modules.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,6 @@ static int modules_init(struct processing_module *mod)
8585
system_agent = system_agent_start(module_entry_point, module_id, instance_id, 0, log_handle,
8686
&mod_cfg);
8787
module_set_private_data(mod, system_agent);
88-
md->module_entry_point = module_entry_point;
8988

9089
md->mpd.in_buff_size = src_cfg->ibs;
9190
md->mpd.out_buff_size = src_cfg->obs;

src/include/module/module/base.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,6 @@ struct module_data {
6060
void *runtime_params;
6161
struct module_memory memory; /**< memory allocated by module */
6262
struct module_processing_data mpd; /**< shared data comp <-> module */
63-
uintptr_t module_entry_point; /**<loadable module entry point address */
6463
struct llext *llext; /**< Zephyr loadable extension context */
6564
#endif /* SOF_MODULE_PRIVATE */
6665
};

0 commit comments

Comments
 (0)