diff options
author | Takashi Iwai <tiwai@suse.de> | 2017-03-21 08:26:02 -0400 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2017-03-21 08:26:02 -0400 |
commit | c6736a94d0e527ddc0d1eb99dbc59886a9ecf471 (patch) | |
tree | 90bd17d6662e481065351dfc3fd33568708eb279 | |
parent | cc3a47a248d7791ef0d2c81a35c46769e55e4c6c (diff) |
ALSA: x86: Make CONFIG_SND_X86 bool
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: 287599cf2d77 ("ALSA: add Intel HDMI LPE audio driver for BYT/CHT-T")
Signed-off-by: Takashi Iwai <tiwai@suse.de>
-rw-r--r-- | sound/x86/Kconfig | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sound/x86/Kconfig b/sound/x86/Kconfig index 84c8f8fc597c..8adf4d1bd46e 100644 --- a/sound/x86/Kconfig +++ b/sound/x86/Kconfig | |||
@@ -1,6 +1,7 @@ | |||
1 | menuconfig SND_X86 | 1 | menuconfig SND_X86 |
2 | tristate "X86 sound devices" | 2 | bool "X86 sound devices" |
3 | depends on X86 | 3 | depends on X86 |
4 | default y | ||
4 | ---help--- | 5 | ---help--- |
5 | X86 sound devices that don't fall under SoC or PCI categories | 6 | X86 sound devices that don't fall under SoC or PCI categories |
6 | 7 | ||