From 0469e121d92181f3fd3eba3a839fad9e970f6c2d Mon Sep 17 00:00:00 2001 From: Peter Ujfalusi Date: Tue, 14 Jul 2026 14:55:55 +0300 Subject: [PATCH] audio: mixin_mixout: Correct underrun notification parameter The MIXER_UNDERRUN_DETECTED notification is initialized to carry the pipeline_id (SOF_IPC4_PIPELINE) as resource, not the module_id. Signed-off-by: Peter Ujfalusi --- src/audio/mixin_mixout/mixin_mixout.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/audio/mixin_mixout/mixin_mixout.c b/src/audio/mixin_mixout/mixin_mixout.c index 6e30eaee72d3..839f0eea8e17 100644 --- a/src/audio/mixin_mixout/mixin_mixout.c +++ b/src/audio/mixin_mixout/mixin_mixout.c @@ -270,7 +270,7 @@ static void mixin_check_notify_underrun(struct comp_dev *dev, struct mixin_data (eos_detected && mixin_data->eos_delay_periods == 0)) { mixin_data->last_reported_underrun = 0; - send_mixer_underrun_notif_msg(dev->ipc_config.id, eos_detected, + send_mixer_underrun_notif_msg(dev->pipeline->pipeline_id, eos_detected, source_avail, sinks_free); } }