aboutsummaryrefslogtreecommitdiffstats
path: root/sound/pci/hda/patch_ca0132.c
diff options
context:
space:
mode:
authorTakashi Iwai <tiwai@suse.de>2012-04-20 07:06:53 -0400
committerTakashi Iwai <tiwai@suse.de>2012-04-20 07:06:53 -0400
commit4740860b534e86d7db3b26cbd980bec8e4c807e8 (patch)
treedf010ab3c53a2b4f3829593b56cdfa19f829115b /sound/pci/hda/patch_ca0132.c
parentcdd03cedc5b55da017fcdeff7d47cac2639cded8 (diff)
ALSA: hda - Add snd_hda_get_default_vref() helper function
Add a new helper function to guess the default VREF pin control bits for mic in. This can be used to set the pin control value safely matching with the actual pin capabilities. Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/pci/hda/patch_ca0132.c')
-rw-r--r--sound/pci/hda/patch_ca0132.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/sound/pci/hda/patch_ca0132.c b/sound/pci/hda/patch_ca0132.c
index ea63333f41fe..d290a8ff0108 100644
--- a/sound/pci/hda/patch_ca0132.c
+++ b/sound/pci/hda/patch_ca0132.c
@@ -253,7 +253,8 @@ static void init_output(struct hda_codec *codec, hda_nid_t pin, hda_nid_t dac)
253static void init_input(struct hda_codec *codec, hda_nid_t pin, hda_nid_t adc) 253static void init_input(struct hda_codec *codec, hda_nid_t pin, hda_nid_t adc)
254{ 254{
255 if (pin) { 255 if (pin) {
256 snd_hda_set_pin_ctl(codec, pin, PIN_VREF80); 256 snd_hda_set_pin_ctl(codec, pin, PIN_IN |
257 snd_hda_get_default_vref(codec, pin));
257 if (get_wcaps(codec, pin) & AC_WCAP_IN_AMP) 258 if (get_wcaps(codec, pin) & AC_WCAP_IN_AMP)
258 snd_hda_codec_write(codec, pin, 0, 259 snd_hda_codec_write(codec, pin, 0,
259 AC_VERB_SET_AMP_GAIN_MUTE, 260 AC_VERB_SET_AMP_GAIN_MUTE,