Skip to content

Commit a207823

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 4702c7c commit a207823

File tree

2 files changed

+0
-3
lines changed

2 files changed

+0
-3
lines changed

src/audio/module_adapter/module/modules.c

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -106,8 +106,6 @@ static int modules_new(struct processing_module *mod, const void *buildinfo,
106106
return -ENOEXEC;
107107
}
108108

109-
md->module_entry_point = module_entry_point;
110-
111109
return 0;
112110
}
113111

src/include/module/module/base.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,6 @@ struct module_data {
6161
const struct module_interface *ops; /**< module specific operations */
6262
struct module_memory memory; /**< memory allocated by module */
6363
struct module_processing_data mpd; /**< shared data comp <-> module */
64-
uintptr_t module_entry_point; /**<loadable module entry point address */
6564
struct llext *llext; /**< Zephyr loadable extension context */
6665
#endif /* SOF_MODULE_PRIVATE */
6766
};

0 commit comments

Comments
 (0)