Skip to content

Commit 6957a93

Browse files
committed
zephyr: Fix compile error after switching to module_adapter naming
There are few left paths and config names after switching from codec_adapter to module_adapter. Without this building codec modules fails Fixes: b4591ca ("codec_adapter: rename it to module_adapter and fix all includes") Signed-off-by: Daniel Baluta <daniel.baluta@nxp.com>
1 parent 842794a commit 6957a93

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

zephyr/CMakeLists.txt

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -610,14 +610,14 @@ zephyr_library_sources_ifdef(CONFIG_COMP_VOLUME
610610
${SOF_AUDIO_PATH}/volume/volume.c
611611
)
612612

613-
zephyr_library_sources_ifdef(CONFIG_COMP_CODEC_ADAPTER
614-
${SOF_AUDIO_PATH}/codec_adapter/codec_adapter.c
615-
${SOF_AUDIO_PATH}/codec_adapter/codec/generic.c
613+
zephyr_library_sources_ifdef(CONFIG_COMP_MODULE_ADAPTER
614+
${SOF_AUDIO_PATH}/module_adapter/module_adapter.c
615+
${SOF_AUDIO_PATH}/module_adapter/module/generic.c
616616
)
617617

618-
if (CONFIG_COMP_CODEC_ADAPTER)
618+
if (CONFIG_COMP_MODULE_ADAPTER)
619619
zephyr_library_sources_ifdef(CONFIG_CADENCE_CODEC
620-
${SOF_AUDIO_PATH}/codec_adapter/codec/cadence.c
620+
${SOF_AUDIO_PATH}/module_adapter/module/cadence.c
621621
)
622622

623623
if (CONFIG_CADENCE_CODEC_MP3_DEC)

0 commit comments

Comments
 (0)