mirror of https://github.com/thesofproject/sof.git
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:
parent
49bd8def85
commit
1ce9e4536c
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
|
@ -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 */
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue