diff options
author | Takashi Iwai <tiwai@suse.de> | 2011-08-18 15:13:17 +0200 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2011-08-18 15:13:17 +0200 |
commit | 3fe45aeaf2033c9eaa5028ed5ba68b466008876f (patch) | |
tree | 087ea2e1d6eefee50818d979037b1b9a0ab75c1a /sound | |
parent | c503ad466da44ca23c658986629bf7a2e2eabbb7 (diff) | |
download | linux-3.10-3fe45aeaf2033c9eaa5028ed5ba68b466008876f.tar.gz linux-3.10-3fe45aeaf2033c9eaa5028ed5ba68b466008876f.tar.bz2 linux-3.10-3fe45aeaf2033c9eaa5028ed5ba68b466008876f.zip |
ALSA: hda - Add "PCM" volume to vmaster slave list
The new parser may use "PCM" volume, but it was missing the vmaster
slave list, thus "Master" volume didn't control it.
Reference: https://bugzilla.kernel.org/show_bug.cgi?id=41342
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound')
-rw-r--r-- | sound/pci/hda/patch_realtek.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sound/pci/hda/patch_realtek.c b/sound/pci/hda/patch_realtek.c index 9a1aa09f47f..fcb11af9ad2 100644 --- a/sound/pci/hda/patch_realtek.c +++ b/sound/pci/hda/patch_realtek.c @@ -1784,6 +1784,7 @@ static const char * const alc_slave_vols[] = { "Speaker Playback Volume", "Mono Playback Volume", "Line-Out Playback Volume", + "PCM Playback Volume", NULL, }; @@ -1798,6 +1799,7 @@ static const char * const alc_slave_sws[] = { "Mono Playback Switch", "IEC958 Playback Switch", "Line-Out Playback Switch", + "PCM Playback Switch", NULL, }; |