diff options
author | Takashi Iwai <tiwai@suse.de> | 2014-12-15 15:43:59 +0300 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2014-12-15 15:46:08 +0300 |
commit | 74f14b36838a6f5406ff1a14fcfda935c190476c (patch) | |
tree | 5e5df6949e4427c084ba22c9cd65230abfb184d5 /sound/pci/hda/patch_via.c | |
parent | 82d04e1088769c769c87ffa1d4df5e4a228f637a (diff) | |
download | linux-74f14b36838a6f5406ff1a14fcfda935c190476c.tar.xz |
ALSA: hda - Make add_stereo_mix_input flag tristate
... for distinguishing whether it's explicitly enabled via a user hint
or enabled by a driver as a fallback. Now the former case corresponds
to HDA_HINT_STEREO_MIX_ENABLE while the latter to
HDA_HINT_STEREO_MIX_AUTO.
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/pci/hda/patch_via.c')
-rw-r--r-- | sound/pci/hda/patch_via.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/pci/hda/patch_via.c b/sound/pci/hda/patch_via.c index 6c206b6c8d65..3de6d3d779c9 100644 --- a/sound/pci/hda/patch_via.c +++ b/sound/pci/hda/patch_via.c @@ -137,7 +137,7 @@ static struct via_spec *via_new_spec(struct hda_codec *codec) spec->gen.indep_hp = 1; spec->gen.keep_eapd_on = 1; spec->gen.pcm_playback_hook = via_playback_pcm_hook; - spec->gen.add_stereo_mix_input = 1; + spec->gen.add_stereo_mix_input = HDA_HINT_STEREO_MIX_AUTO; return spec; } |