From: Johan Hovold Date: Fri, 18 Oct 2024 06:35:30 +0000 (+0200) Subject: ucm2: Qualcomm: sm8550-hdk: fix codec initialisation X-Git-Tag: v1.2.13~15 X-Git-Url: https://git.alsa-project.org/?a=commitdiff_plain;h=cb15477ed3438cd62103dde2bfdc026cf9a6501f;p=alsa-ucm-conf.git ucm2: Qualcomm: sm8550-hdk: fix codec initialisation The lazy include of the four 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 and Headphone stereo mixer elements are never defined and cannot be used for hardware volume control. The default Speaker digital volume is also never set by the BootSequence as intended. Closes: https://github.com/alsa-project/alsa-ucm-conf/pull/454 Signed-off-by: Johan Hovold Signed-off-by: Jaroslav Kysela --- diff --git a/ucm2/Qualcomm/sm8550/HDK/SM8550-HDK.conf b/ucm2/Qualcomm/sm8550/HDK/SM8550-HDK.conf index f694c9e..a810ac3 100644 --- a/ucm2/Qualcomm/sm8550/HDK/SM8550-HDK.conf +++ b/ucm2/Qualcomm/sm8550/HDK/SM8550-HDK.conf @@ -17,7 +17,7 @@ BootSequence [ 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/wcd938x/init.conf" -Include.codec-init.File "/codecs/qcom-lpass/wsa-macro/init.conf" -Include.codec-init.File "/codecs/qcom-lpass/rx-macro/init.conf" +Include.wsa-init.File "/codecs/wsa884x/two-speakers/init.conf" +Include.wcd-init.File "/codecs/wcd938x/init.conf" +Include.wsam-init.File "/codecs/qcom-lpass/wsa-macro/init.conf" +Include.rxm-init.File "/codecs/qcom-lpass/rx-macro/init.conf"