* [PATCH] ALSA: hda: Fix arch defconfigs
@ 2025-07-31 5:30 Takashi Iwai
2025-07-31 6:15 ` Krzysztof Kozlowski
0 siblings, 1 reply; 3+ messages in thread
From: Takashi Iwai @ 2025-07-31 5:30 UTC (permalink / raw)
To: linux-sound; +Cc: linux-kernel
The Realtek and HDMI HD-audio codec configs have been slightly updated
again since the previous change. Follow the new kconfig changes for
arch defconfigs that contain CONFIG_SND_HDA_* items.
Fixes: 1d8dd982c409 ("ALSA: hda/realtek: Enable drivers as default")
Fixes: 81231ad173d8 ("ALSA: hda/hdmi: Enable drivers as default")
Signed-off-by: Takashi Iwai <tiwai@suse.de>
---
arch/arm/configs/multi_v7_defconfig | 3 ++-
arch/arm/configs/tegra_defconfig | 3 +++
arch/loongarch/configs/loongson3_defconfig | 2 ++
arch/mips/configs/loongson2k_defconfig | 1 +
arch/mips/configs/loongson3_defconfig | 3 ++-
5 files changed, 10 insertions(+), 2 deletions(-)
diff --git a/arch/arm/configs/multi_v7_defconfig b/arch/arm/configs/multi_v7_defconfig
index 02ddd7ce9e3e..7fb1f7dc8139 100644
--- a/arch/arm/configs/multi_v7_defconfig
+++ b/arch/arm/configs/multi_v7_defconfig
@@ -791,10 +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=y
+CONFIG_SND_HDA_CODEC_REALTEK=m
CONFIG_SND_HDA_CODEC_REALTEK_LIB=m
CONFIG_SND_HDA_CODEC_ALC269=m
CONFIG_SND_HDA_CODEC_HDMI=m
+CONFIG_SND_HDA_CODEC_HDMI_GENERIC=m
CONFIG_SND_HDA_CODEC_HDMI_TEGRA=m
CONFIG_SND_USB_AUDIO=m
CONFIG_SND_SOC=m
diff --git a/arch/arm/configs/tegra_defconfig b/arch/arm/configs/tegra_defconfig
index 3a9bda2bf422..63bd824e84a8 100644
--- a/arch/arm/configs/tegra_defconfig
+++ b/arch/arm/configs/tegra_defconfig
@@ -225,7 +225,10 @@ CONFIG_SND_HDA_TEGRA=y
CONFIG_SND_HDA_INPUT_BEEP=y
CONFIG_SND_HDA_PATCH_LOADER=y
CONFIG_SND_HDA_CODEC_REALTEK=y
+CONFIG_SND_HDA_CODEC_ALC269=y
CONFIG_SND_HDA_CODEC_HDMI=y
+CONFIG_SND_HDA_CODEC_HDMI_GENERIC=y
+CONFIG_SND_HDA_CODEC_HDMI_TEGRA=y
# CONFIG_SND_ARM is not set
# CONFIG_SND_SPI is not set
# CONFIG_SND_USB is not set
diff --git a/arch/loongarch/configs/loongson3_defconfig b/arch/loongarch/configs/loongson3_defconfig
index 0d59af6007b7..ac00d815b478 100644
--- a/arch/loongarch/configs/loongson3_defconfig
+++ b/arch/loongarch/configs/loongson3_defconfig
@@ -784,8 +784,10 @@ CONFIG_SND_HDA_HWDEP=y
CONFIG_SND_HDA_INPUT_BEEP=y
CONFIG_SND_HDA_PATCH_LOADER=y
CONFIG_SND_HDA_CODEC_REALTEK=y
+CONFIG_SND_HDA_CODEC_ALC269=y
CONFIG_SND_HDA_CODEC_SIGMATEL=y
CONFIG_SND_HDA_CODEC_HDMI=y
+CONFIG_SND_HDA_CODEC_HDMI_GENERIC=y
CONFIG_SND_HDA_CODEC_CONEXANT=y
CONFIG_SND_USB_AUDIO=m
CONFIG_SND_SOC=m
diff --git a/arch/mips/configs/loongson2k_defconfig b/arch/mips/configs/loongson2k_defconfig
index 4b7f914d01d0..b1b370a227dc 100644
--- a/arch/mips/configs/loongson2k_defconfig
+++ b/arch/mips/configs/loongson2k_defconfig
@@ -257,6 +257,7 @@ CONFIG_SND_HDA_INTEL=y
CONFIG_SND_HDA_HWDEP=y
CONFIG_SND_HDA_PATCH_LOADER=y
CONFIG_SND_HDA_CODEC_REALTEK=y
+CONFIG_SND_HDA_CODEC_ALC269=y
CONFIG_SND_HDA_CODEC_ANALOG=y
CONFIG_SND_HDA_CODEC_SIGMATEL=y
CONFIG_SND_HDA_CODEC_VIA=y
diff --git a/arch/mips/configs/loongson3_defconfig b/arch/mips/configs/loongson3_defconfig
index 5ff0c1554168..b5c18d847908 100644
--- a/arch/mips/configs/loongson3_defconfig
+++ b/arch/mips/configs/loongson3_defconfig
@@ -292,11 +292,12 @@ 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=y
+CONFIG_SND_HDA_CODEC_REALTEK=m
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_HDMI_GENERIC=m
CONFIG_SND_HDA_CODEC_CONEXANT=m
# CONFIG_SND_USB is not set
CONFIG_HIDRAW=y
--
2.50.1
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH] ALSA: hda: Fix arch defconfigs
2025-07-31 5:30 [PATCH] ALSA: hda: Fix arch defconfigs Takashi Iwai
@ 2025-07-31 6:15 ` Krzysztof Kozlowski
2025-07-31 6:36 ` Takashi Iwai
0 siblings, 1 reply; 3+ messages in thread
From: Krzysztof Kozlowski @ 2025-07-31 6:15 UTC (permalink / raw)
To: Takashi Iwai, linux-sound; +Cc: linux-kernel
On 31/07/2025 07:30, Takashi Iwai wrote:
> The Realtek and HDMI HD-audio codec configs have been slightly updated
> again since the previous change. Follow the new kconfig changes for
> arch defconfigs that contain CONFIG_SND_HDA_* items.
>
> Fixes: 1d8dd982c409 ("ALSA: hda/realtek: Enable drivers as default")
> Fixes: 81231ad173d8 ("ALSA: hda/hdmi: Enable drivers as default")
> Signed-off-by: Takashi Iwai <tiwai@suse.de>
> ---
> arch/arm/configs/multi_v7_defconfig | 3 ++-
> arch/arm/configs/tegra_defconfig | 3 +++
> arch/loongarch/configs/loongson3_defconfig | 2 ++
> arch/mips/configs/loongson2k_defconfig | 1 +
> arch/mips/configs/loongson3_defconfig | 3 ++-
This is not ALSA change at all. Please use correct subject prefixes
after splitting the patch per subsystem.
Best regards,
Krzysztof
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] ALSA: hda: Fix arch defconfigs
2025-07-31 6:15 ` Krzysztof Kozlowski
@ 2025-07-31 6:36 ` Takashi Iwai
0 siblings, 0 replies; 3+ messages in thread
From: Takashi Iwai @ 2025-07-31 6:36 UTC (permalink / raw)
To: Krzysztof Kozlowski; +Cc: Takashi Iwai, linux-sound, linux-kernel
On Thu, 31 Jul 2025 08:15:06 +0200,
Krzysztof Kozlowski wrote:
>
> On 31/07/2025 07:30, Takashi Iwai wrote:
> > The Realtek and HDMI HD-audio codec configs have been slightly updated
> > again since the previous change. Follow the new kconfig changes for
> > arch defconfigs that contain CONFIG_SND_HDA_* items.
> >
> > Fixes: 1d8dd982c409 ("ALSA: hda/realtek: Enable drivers as default")
> > Fixes: 81231ad173d8 ("ALSA: hda/hdmi: Enable drivers as default")
> > Signed-off-by: Takashi Iwai <tiwai@suse.de>
> > ---
> > arch/arm/configs/multi_v7_defconfig | 3 ++-
> > arch/arm/configs/tegra_defconfig | 3 +++
> > arch/loongarch/configs/loongson3_defconfig | 2 ++
> > arch/mips/configs/loongson2k_defconfig | 1 +
> > arch/mips/configs/loongson3_defconfig | 3 ++-
>
>
> This is not ALSA change at all. Please use correct subject prefixes
> after splitting the patch per subsystem.
OK, will do.
thanks,
Takashi
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2025-07-31 6:36 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-07-31 5:30 [PATCH] ALSA: hda: Fix arch defconfigs Takashi Iwai
2025-07-31 6:15 ` Krzysztof Kozlowski
2025-07-31 6:36 ` 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).