Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions src/library_manager/lib_manager.c
Original file line number Diff line number Diff line change
Expand Up @@ -628,8 +628,9 @@ int lib_manager_register_module(const uint32_t component_id)
goto cleanup;
}

mod = (struct sof_man_module *)((const uint8_t *)desc + SOF_MAN_MODULE_OFFSET(entry_index));
const struct sof_uuid *uid = (struct sof_uuid *)&mod->uuid;
mod = (const struct sof_man_module *)((const uint8_t *)desc +
SOF_MAN_MODULE_OFFSET(entry_index));
const struct sof_uuid *uid = (const struct sof_uuid *)&mod->uuid;

lib_manager_prepare_module_adapter(drv, uid);

Expand Down
Loading