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>
This commit is contained in:
Adrian Warecki 2024-02-29 13:11:35 +01:00 committed by Kai Vehmanen
parent 49bd8def85
commit 1ce9e4536c
2 changed files with 0 additions and 3 deletions

View File

@ -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;
}

View File

@ -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 */
};