linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 0/2] Fix HD-audio default kconfigs in arm and mips
@ 2025-07-15  7:51 Takashi Iwai
  2025-07-15  7:51 ` [PATCH 1/2] arm: multi_v7_defconfig: Update HD-audio configs Takashi Iwai
  2025-07-15  7:51 ` [PATCH 2/2] mips: loongson3_defconfig: " Takashi Iwai
  0 siblings, 2 replies; 3+ messages in thread
From: Takashi Iwai @ 2025-07-15  7:51 UTC (permalink / raw)
  To: linux-sound
  Cc: linux-arm-kernel, Thomas Bogendoerfer, linux-mips,
	Stephen Rothwell, linux-kernel

The upcoming reorganization of HD-audio drivers for 6.17 kernel broght
some changes in Kconfig, and we need to update the default kconfigs in
arm and mips to follow that.

It's for-next branch of sound git tree, to be included in 6.17
kernel.


Takashi

===

Takashi Iwai (2):
  arm: multi_v7_defconfig: Update HD-audio configs
  mips: loongson3_defconfig: Update HD-audio configs

 arch/arm/configs/multi_v7_defconfig   | 5 ++++-
 arch/mips/configs/loongson3_defconfig | 4 +++-
 2 files changed, 7 insertions(+), 2 deletions(-)

-- 
2.50.1



^ permalink raw reply	[flat|nested] 3+ messages in thread

* [PATCH 1/2] arm: multi_v7_defconfig: Update HD-audio configs
  2025-07-15  7:51 [PATCH 0/2] Fix HD-audio default kconfigs in arm and mips Takashi Iwai
@ 2025-07-15  7:51 ` Takashi Iwai
  2025-07-15  7:51 ` [PATCH 2/2] mips: loongson3_defconfig: " Takashi Iwai
  1 sibling, 0 replies; 3+ messages in thread
From: Takashi Iwai @ 2025-07-15  7:51 UTC (permalink / raw)
  To: linux-sound
  Cc: linux-arm-kernel, Thomas Bogendoerfer, linux-mips,
	Stephen Rothwell, linux-kernel

Since the reorganization of HD-audio drivers, Realtek and HDMI codec
drivers have been split.  Update to the new Kconfigs to catch up.

Fixes: aeeb85f26c3b ("ALSA: hda: Split Realtek HD-audio codec driver")
Fixes: 73cd0490819d ("ALSA: hda/hdmi: Split vendor codec drivers")
Reported-by: Stephen Rothwell <sfr@canb.auug.org.au>
Closes: https://lore.kernel.org/20250715170422.5162c666@canb.auug.org.au
Signed-off-by: Takashi Iwai <tiwai@suse.de>
---

I'm going to put to sound git tree if no one objects

 arch/arm/configs/multi_v7_defconfig | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/arch/arm/configs/multi_v7_defconfig b/arch/arm/configs/multi_v7_defconfig
index 50c170b4619f..02ddd7ce9e3e 100644
--- a/arch/arm/configs/multi_v7_defconfig
+++ b/arch/arm/configs/multi_v7_defconfig
@@ -791,8 +791,11 @@ CONFIG_SND=m
 CONFIG_SND_HDA_TEGRA=m
 CONFIG_SND_HDA_INPUT_BEEP=y
 CONFIG_SND_HDA_PATCH_LOADER=y
-CONFIG_SND_HDA_CODEC_REALTEK=m
+CONFIG_SND_HDA_CODEC_REALTEK=y
+CONFIG_SND_HDA_CODEC_REALTEK_LIB=m
+CONFIG_SND_HDA_CODEC_ALC269=m
 CONFIG_SND_HDA_CODEC_HDMI=m
+CONFIG_SND_HDA_CODEC_HDMI_TEGRA=m
 CONFIG_SND_USB_AUDIO=m
 CONFIG_SND_SOC=m
 CONFIG_SND_ATMEL_SOC=m
-- 
2.50.1



^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [PATCH 2/2] mips: loongson3_defconfig: Update HD-audio configs
  2025-07-15  7:51 [PATCH 0/2] Fix HD-audio default kconfigs in arm and mips Takashi Iwai
  2025-07-15  7:51 ` [PATCH 1/2] arm: multi_v7_defconfig: Update HD-audio configs Takashi Iwai
@ 2025-07-15  7:51 ` Takashi Iwai
  1 sibling, 0 replies; 3+ messages in thread
From: Takashi Iwai @ 2025-07-15  7:51 UTC (permalink / raw)
  To: linux-sound
  Cc: linux-arm-kernel, Thomas Bogendoerfer, linux-mips,
	Stephen Rothwell, linux-kernel

Since the reorganization of HD-audio drivers, Realtek driver has been
split.  Update to the new Kconfigs to catch up.

Fixes: aeeb85f26c3b ("ALSA: hda: Split Realtek HD-audio codec driver")
Signed-off-by: Takashi Iwai <tiwai@suse.de>
---

I'm going to put to sound git tree if no one objects

 arch/mips/configs/loongson3_defconfig | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/arch/mips/configs/loongson3_defconfig b/arch/mips/configs/loongson3_defconfig
index 98844b457b7f..5ff0c1554168 100644
--- a/arch/mips/configs/loongson3_defconfig
+++ b/arch/mips/configs/loongson3_defconfig
@@ -292,7 +292,9 @@ CONFIG_SND_SEQ_DUMMY=m
 # CONFIG_SND_ISA is not set
 CONFIG_SND_HDA_INTEL=m
 CONFIG_SND_HDA_PATCH_LOADER=y
-CONFIG_SND_HDA_CODEC_REALTEK=m
+CONFIG_SND_HDA_CODEC_REALTEK=y
+CONFIG_SND_HDA_CODEC_REALTEK_LIB=m
+CONFIG_SND_HDA_CODEC_ALC269=m
 CONFIG_SND_HDA_CODEC_SIGMATEL=m
 CONFIG_SND_HDA_CODEC_HDMI=m
 CONFIG_SND_HDA_CODEC_CONEXANT=m
-- 
2.50.1



^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2025-07-15  8:02 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-07-15  7:51 [PATCH 0/2] Fix HD-audio default kconfigs in arm and mips Takashi Iwai
2025-07-15  7:51 ` [PATCH 1/2] arm: multi_v7_defconfig: Update HD-audio configs Takashi Iwai
2025-07-15  7:51 ` [PATCH 2/2] mips: loongson3_defconfig: " Takashi Iwai

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).