ll-schedule: degrade an error message to a warning

SOF always tries to register both scheduling domains - timer and DMA,
even though the DMA domain isn't used in current topologies on newer
architectures and isn't supported under Zephyr. Degrade the error
message printed upon each boot due to this lack of support to a
warning.

Signed-off-by: Guennadi Liakhovetski <guennadi.liakhovetski@linux.intel.com>
This commit is contained in:
Guennadi Liakhovetski 2022-09-09 07:50:59 +02:00 committed by Liam Girdwood
parent 8136e514bf
commit 1e9a709ee7
1 changed files with 2 additions and 2 deletions

View File

@ -512,8 +512,8 @@ int zephyr_ll_scheduler_init(struct ll_schedule_domain *domain)
struct zephyr_ll *sch;
if (domain->type != SOF_SCHEDULE_LL_TIMER) {
tr_err(&ll_tr, "zephyr_ll_scheduler_init(): unsupported domain %u",
domain->type);
tr_warn(&ll_tr, "zephyr_ll_scheduler_init(): unsupported domain %u",
domain->type);
return -EINVAL;
}