We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6530839 commit d7704c3Copy full SHA for d7704c3
src/ipc/ipc4/helper.c
@@ -728,7 +728,7 @@ int ipc4_chain_manager_create(struct ipc4_chain_dma *cdma)
728
const struct comp_driver *drv;
729
struct comp_dev *dev;
730
731
- drv = ipc4_get_drv((uint8_t *)&uuid);
+ drv = ipc4_get_drv((const uint8_t *)&uuid);
732
if (!drv)
733
return -EINVAL;
734
@@ -934,7 +934,7 @@ static const struct comp_driver *ipc4_library_get_drv(int module_id)
934
mod_uuid = &uuid_map[i];
935
936
if (mod_uuid->module_id == module_id)
937
- return ipc4_get_drv((uint8_t *)&mod_uuid->uuid);
+ return ipc4_get_drv((const uint8_t *)&mod_uuid->uuid);
938
}
939
940
tr_err(&comp_tr, "ipc4_library_get_drv(): Unsupported module ID %#x\n", module_id);
0 commit comments