Skip to content

Commit

Permalink
modules: Remove unused module_entry_point from module_data
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
softwarecki committed Mar 21, 2024
1 parent 9ae218c commit d5fe8be
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 3 deletions.
2 changes: 0 additions & 2 deletions src/audio/module_adapter/module/modules.c
Original file line number Diff line number Diff line change
Expand Up @@ -106,8 +106,6 @@ static int modules_new(struct processing_module *mod, const void *buildinfo,
return -ENOEXEC;
}

md->module_entry_point = module_entry_point;

return 0;
}

Expand Down
1 change: 0 additions & 1 deletion src/include/module/module/base.h
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,6 @@ struct module_data {
void *runtime_params;
struct module_memory memory; /**< memory allocated by module */
struct module_processing_data mpd; /**< shared data comp <-> module */
uintptr_t module_entry_point; /**<loadable module entry point address */
struct llext *llext; /**< Zephyr loadable extension context */
#endif /* SOF_MODULE_PRIVATE */
};
Expand Down

0 comments on commit d5fe8be

Please sign in to comment.