mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2026-08-09 06:14:34 +02:00
With commit2d9223d2d6("ALSA: hda: Move controller drivers into sound/hda/controllers directory") the HD Audio drivers have been moved from linux/sound/pci/hda to linux/sound/hda. But the Kconfig dependency for SND_HDA_INTEL stayed on SND_PCI instead of depending on PCI directly. To make the "HD Audio PCI" configuration entry visible it is currently needed to enable "PCI sound devices" although no PCI device in the submenu needs to be selected. Make SND_HDA_INTEL directly depending on hardware/architecture like the other entries in this Kconfig. Fixes:2d9223d2d6("ALSA: hda: Move controller drivers into sound/hda/controllers directory") Signed-off-by: Oliver Hartkopp <socketcan@hartkopp.net> Link: https://patch.msgid.link/20260529-hda-kconfig-v1-1-4a2c6a0efd56@hartkopp.net Signed-off-by: Takashi Iwai <tiwai@suse.de>
57 lines
1.6 KiB
Plaintext
57 lines
1.6 KiB
Plaintext
# SPDX-License-Identifier: GPL-2.0-only
|
|
config SND_HDA_INTEL
|
|
tristate "HD Audio PCI"
|
|
depends on PCI
|
|
select SND_HDA
|
|
select SND_INTEL_DSP_CONFIG
|
|
help
|
|
Say Y here to include support for Intel "High Definition
|
|
Audio" (Azalia) and its compatible devices.
|
|
|
|
This option enables the HD-audio controller. Don't forget
|
|
to choose the appropriate HD-audio codec options.
|
|
|
|
To compile this driver as a module, choose M here: the module
|
|
will be called snd-hda-intel.
|
|
|
|
config SND_HDA_TEGRA
|
|
tristate "NVIDIA Tegra HD Audio"
|
|
depends on ARCH_TEGRA
|
|
select SND_HDA
|
|
select SND_HDA_ALIGNED_MMIO
|
|
help
|
|
Say Y here to support the HDA controller present in NVIDIA
|
|
Tegra SoCs
|
|
|
|
This options enables support for the HD Audio controller
|
|
present in some NVIDIA Tegra SoCs, used to communicate audio
|
|
to the HDMI output.
|
|
|
|
To compile this driver as a module, choose M here: the module
|
|
will be called snd-hda-tegra.
|
|
|
|
config SND_HDA_CIX_IPBLOQ
|
|
tristate "CIX IPBLOQ HD Audio"
|
|
depends on ARCH_CIX || COMPILE_TEST
|
|
select SND_HDA
|
|
select SND_HDA_ALIGNED_MMIO
|
|
help
|
|
Say Y here to support the HDA controller present in CIX SoCs
|
|
|
|
This options enables support for the HD Audio controller
|
|
present in some CIX SoCs.
|
|
|
|
To compile this driver as a module, choose M here: the module
|
|
will be called snd-hda-cix-ipbloq.
|
|
|
|
config SND_HDA_ACPI
|
|
tristate "HD Audio ACPI"
|
|
depends on ACPI
|
|
select SND_HDA
|
|
help
|
|
Say Y here to include support for Azalia-compatible HDA controllers
|
|
which are advertised via ACPI objects.
|
|
|
|
To compile this driver as a module, choose M here: the module
|
|
will be called snd-hda-acpi.
|