Drop the 211.7.x security-ahead patches superseded by the RHEL 211.8.1..211.16.1 backports (1100-1104), add those backports (1106-1161) from centos-stream-10 and upstream linux-6.12.y. Keep the smb cifs.spnego ahead-fix (1105). Bump to 211.16.1.
63 lines
2.2 KiB
Diff
63 lines
2.2 KiB
Diff
From 69e69e240e71e94b8404b33ce9296967a1114258 Mon Sep 17 00:00:00 2001
|
|
From: Jaroslav Kysela <jkysela@redhat.com>
|
|
Date: Thu, 5 Mar 2026 15:06:06 +0100
|
|
Subject: [PATCH] ASoC: soc_sdw_utils: remove index from sdca codec name
|
|
MIME-Version: 1.0
|
|
Content-Type: text/plain; charset=UTF-8
|
|
Content-Transfer-Encoding: 8bit
|
|
|
|
JIRA: https://issues.redhat.com/browse/RHEL-85741
|
|
|
|
commit 34b4fc44e4f904fbb81335d53163ffdcb0180000
|
|
Author: Bard Liao <yung-chuan.liao@linux.intel.com>
|
|
Date: Wed Feb 25 21:50:04 2026 +0800
|
|
|
|
ASoC: soc_sdw_utils: remove index from sdca codec name
|
|
|
|
The index is not fixed and it will lead to the DAI link can't bind the
|
|
codec component with the name when the index is different from the
|
|
predefined one.
|
|
|
|
Signed-off-by: Bard Liao <yung-chuan.liao@linux.intel.com>
|
|
Reviewed-by: Charles Keepax <ckeepax@opensource.cirrus.com>
|
|
Reviewed-by: Péter Ujfalusi <peter.ujfalusi@linux.intel.com>
|
|
Link: https://patch.msgid.link/20260225135004.2322987-4-yung-chuan.liao@linux.intel.com
|
|
Signed-off-by: Mark Brown <broonie@kernel.org>
|
|
|
|
Signed-off-by: Jaroslav Kysela <jkysela@redhat.com>
|
|
|
|
diff --git a/sound/soc/sdw_utils/soc_sdw_utils.c b/sound/soc/sdw_utils/soc_sdw_utils.c
|
|
index 88afb14e1ed3..7afd8fa305be 100644
|
|
--- a/sound/soc/sdw_utils/soc_sdw_utils.c
|
|
+++ b/sound/soc/sdw_utils/soc_sdw_utils.c
|
|
@@ -727,7 +727,7 @@ struct asoc_sdw_codec_info codec_info_list[] = {
|
|
.dais = {
|
|
{
|
|
.direction = {true, false},
|
|
- .codec_name = "snd_soc_sdca.UAJ.1",
|
|
+ .codec_name = "snd_soc_sdca.UAJ",
|
|
.dai_name = "IT 41",
|
|
.dai_type = SOC_SDW_DAI_TYPE_JACK,
|
|
.dailink = {SOC_SDW_JACK_OUT_DAI_ID, SOC_SDW_UNUSED_DAI_ID},
|
|
@@ -743,7 +743,7 @@ struct asoc_sdw_codec_info codec_info_list[] = {
|
|
},
|
|
{
|
|
.direction = {false, true},
|
|
- .codec_name = "snd_soc_sdca.UAJ.1",
|
|
+ .codec_name = "snd_soc_sdca.UAJ",
|
|
.dai_name = "OT 36",
|
|
.dai_type = SOC_SDW_DAI_TYPE_JACK,
|
|
.dailink = {SOC_SDW_UNUSED_DAI_ID, SOC_SDW_JACK_IN_DAI_ID},
|
|
@@ -752,7 +752,7 @@ struct asoc_sdw_codec_info codec_info_list[] = {
|
|
.dai_num = 3,
|
|
.auxs = {
|
|
{
|
|
- .codec_name = "snd_soc_sdca.HID.2",
|
|
+ .codec_name = "snd_soc_sdca.HID",
|
|
},
|
|
},
|
|
.aux_num = 1,
|
|
--
|
|
2.50.1 (Apple Git-155)
|
|
|