mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-11-01 17:08:10 +00:00
c6736a94d0
CONFIG_SND_X86 is a menu config to filter only for x86-specific
drivers in its sub-menu, and this doesn't have to be tristate but
rather it should be a bool. Also, like other sub-menu configs, it's
more user-friendly to be default=y; it's merely a menu config and the
actual drivers are configured in the sub-menu, after all.
Fixes: 287599cf2d
("ALSA: add Intel HDMI LPE audio driver for BYT/CHT-T")
Signed-off-by: Takashi Iwai <tiwai@suse.de>
17 lines
359 B
Text
17 lines
359 B
Text
menuconfig SND_X86
|
|
bool "X86 sound devices"
|
|
depends on X86
|
|
default y
|
|
---help---
|
|
X86 sound devices that don't fall under SoC or PCI categories
|
|
|
|
if SND_X86
|
|
|
|
config HDMI_LPE_AUDIO
|
|
tristate "HDMI audio without HDaudio on Intel Atom platforms"
|
|
depends on DRM_I915
|
|
select SND_PCM
|
|
help
|
|
Choose this option to support HDMI LPE Audio mode
|
|
|
|
endif # SND_X86
|