From eb403cdedf2327e5821f25c2a2d4dad310891f06 Mon Sep 17 00:00:00 2001 From: Johan Hovold Date: Fri, 18 Oct 2024 08:41:07 +0200 Subject: [PATCH] ucm2: Qualcomm: sm8650-mtp: fix codec initialisation The lazy include of the two codec initialisation files are incorrectly specified using the same identifier which means that only the last one is actually included. This specifically means that the Speakers stereo mixer element is never defined and cannot be used for hardware volume control. Closes: https://github.com/alsa-project/alsa-ucm-conf/pull/454 Signed-off-by: Johan Hovold Signed-off-by: Jaroslav Kysela --- ucm2/Qualcomm/sm8650/MTP/SM8650-MTP.conf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ucm2/Qualcomm/sm8650/MTP/SM8650-MTP.conf b/ucm2/Qualcomm/sm8650/MTP/SM8650-MTP.conf index b8077e1..7b05d44 100644 --- a/ucm2/Qualcomm/sm8650/MTP/SM8650-MTP.conf +++ b/ucm2/Qualcomm/sm8650/MTP/SM8650-MTP.conf @@ -7,5 +7,5 @@ SectionUseCase."HiFi" { Include.card-init.File "/lib/card-init.conf" Include.ctl-remap.File "/lib/ctl-remap.conf" -Include.codec-init.File "/codecs/wsa884x/two-speakers/init.conf" -Include.codec-init.File "/codecs/qcom-lpass/wsa-macro/init.conf" +Include.wsa-init.File "/codecs/wsa884x/two-speakers/init.conf" +Include.wsam-init.File "/codecs/qcom-lpass/wsa-macro/init.conf" -- 2.47.1