From 9d3c5156f9d01e87b485fb04436d47218c990719 Mon Sep 17 00:00:00 2001 From: Serhiy Katsyuba Date: Thu, 17 Apr 2025 13:30:38 +0200 Subject: [PATCH] ptl: Make MicSel a built-in module, not an llext module MicSel crashes when built as an llext module. Temporarily make it a built-in until the problem is resolved. When built as an llext module, MicSel crashes when attempting to call audio_stream_recalc_align(). The address of audio_stream_recalc_align() is printed as NULL. Backtrace: set_selector_params() --> audio_stream_set_channels() --> audio_stream_recalc_align(). Signed-off-by: Serhiy Katsyuba --- app/boards/intel_adsp_ace30_ptl.conf | 3 +++ 1 file changed, 3 insertions(+) diff --git a/app/boards/intel_adsp_ace30_ptl.conf b/app/boards/intel_adsp_ace30_ptl.conf index d6dfe492e81e..32121f7b9b02 100644 --- a/app/boards/intel_adsp_ace30_ptl.conf +++ b/app/boards/intel_adsp_ace30_ptl.conf @@ -92,3 +92,6 @@ CONFIG_LOG_FUNC_NAME_PREFIX_DBG=y CONFIG_LOG_MODE_DEFERRED=y CONFIG_LOG_OUTPUT_FORMAT_LINUX_TIMESTAMP=y CONFIG_LOG_TIMESTAMP_64BIT=y + +# FIXME: MicSel crashes when used as an llext module. Temporarily make it a built-in. +CONFIG_COMP_SEL=y