diff --git a/app/boards/intel_adsp_ace15_mtpm.conf b/app/boards/intel_adsp_ace15_mtpm.conf index b93a408ee8f5..17271532dd1f 100644 --- a/app/boards/intel_adsp_ace15_mtpm.conf +++ b/app/boards/intel_adsp_ace15_mtpm.conf @@ -32,7 +32,7 @@ CONFIG_FAST_GET=y # SOF / audio modules / mocks # This mock is part of official sof-bin releases because the CI that # tests it can't use extra CONFIGs. See #9410, #8722 and #9386 -CONFIG_COMP_GOOGLE_RTC_AUDIO_PROCESSING=y +CONFIG_COMP_GOOGLE_RTC_AUDIO_PROCESSING=m CONFIG_GOOGLE_RTC_AUDIO_PROCESSING_MOCK=y # SOF / infrastructure diff --git a/app/boards/intel_adsp_ace20_lnl.conf b/app/boards/intel_adsp_ace20_lnl.conf index 5e0a34f71e30..39f6afa7746e 100644 --- a/app/boards/intel_adsp_ace20_lnl.conf +++ b/app/boards/intel_adsp_ace20_lnl.conf @@ -25,6 +25,12 @@ CONFIG_PIPELINE_2_0=y CONFIG_SAMPLE_KEYPHRASE=y CONFIG_FAST_GET=y +# SOF / audio modules / mocks +# This mock is part of official sof-bin releases because the CI that +# tests it can't use extra CONFIGs. See #9410, #8722 and #9386 +CONFIG_COMP_GOOGLE_RTC_AUDIO_PROCESSING=m +CONFIG_GOOGLE_RTC_AUDIO_PROCESSING_MOCK=y + # SOF / infrastructure CONFIG_AMS=y CONFIG_KCPS_DYNAMIC_CLOCK_CONTROL=n diff --git a/app/boards/intel_adsp_ace30_ptl.conf b/app/boards/intel_adsp_ace30_ptl.conf index d1a2adb4b81e..dbb003b08b94 100644 --- a/app/boards/intel_adsp_ace30_ptl.conf +++ b/app/boards/intel_adsp_ace30_ptl.conf @@ -28,6 +28,12 @@ CONFIG_PCM_CONVERTER_FORMAT_U8=y CONFIG_PIPELINE_2_0=y CONFIG_FAST_GET=y +# SOF / audio modules / mocks +# This mock is part of official sof-bin releases because the CI that +# tests it can't use extra CONFIGs. See #9410, #8722 and #9386 +CONFIG_COMP_GOOGLE_RTC_AUDIO_PROCESSING=m +CONFIG_GOOGLE_RTC_AUDIO_PROCESSING_MOCK=y + # SOF / infrastructure CONFIG_KCPS_DYNAMIC_CLOCK_CONTROL=n CONFIG_PROBE=y diff --git a/src/audio/data_blob.c b/src/audio/data_blob.c index 7e1bc11f1f17..a715e194417f 100644 --- a/src/audio/data_blob.c +++ b/src/audio/data_blob.c @@ -128,6 +128,7 @@ bool comp_is_current_data_blob_valid(struct comp_data_blob_handler { return !!blob_handler->data; } +EXPORT_SYMBOL(comp_is_current_data_blob_valid); int comp_init_data_blob(struct comp_data_blob_handler *blob_handler, uint32_t size, const void *init_data) diff --git a/src/ipc/ipc4/helper.c b/src/ipc/ipc4/helper.c index eca6acd17413..11bc7997b6eb 100644 --- a/src/ipc/ipc4/helper.c +++ b/src/ipc/ipc4/helper.c @@ -1149,6 +1149,7 @@ void ipc4_update_source_format(struct sof_source *source, source_set_valid_fmt(source, valid_fmt); source_set_buffer_fmt(source, fmt->interleaving_style); } +EXPORT_SYMBOL(ipc4_update_source_format); void ipc4_update_sink_format(struct sof_sink *sink, const struct ipc4_audio_format *fmt)