Skip to content

Commit fc40d8e

Browse files
committed
ipc4: a failure to find a driver might not be fatal
When ipc4_get_drv() fails to find a driver, it might mean, that the driver needs to be linked dynamically. Printing an error in such a case wrongly fails CI testing. Signed-off-by: Guennadi Liakhovetski <guennadi.liakhovetski@linux.intel.com>
1 parent 660d60b commit fc40d8e

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

src/ipc/ipc4/helper.c

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -910,11 +910,11 @@ const struct comp_driver *ipc4_get_drv(const uint8_t *uuid)
910910
}
911911
}
912912

913-
tr_err(&comp_tr, "get_drv(): the provided UUID (%08x %08x %08x %08x) can't be found!",
914-
*(uint32_t *)(&uuid[0]),
915-
*(uint32_t *)(&uuid[4]),
916-
*(uint32_t *)(&uuid[8]),
917-
*(uint32_t *)(&uuid[12]));
913+
tr_warn(&comp_tr, "get_drv(): the provided UUID (%08x %08x %08x %08x) can't be found!",
914+
*(uint32_t *)(&uuid[0]),
915+
*(uint32_t *)(&uuid[4]),
916+
*(uint32_t *)(&uuid[8]),
917+
*(uint32_t *)(&uuid[12]));
918918

919919
out:
920920
irq_local_enable(flags);

0 commit comments

Comments
 (0)