aboutsummaryrefslogtreecommitdiffstats
path: root/sound/pci/hda/hda_generic.c
diff options
context:
space:
mode:
authorMatt <matt@embeddedalley.com>2005-04-13 14:37:50 +0200
committerJaroslav Kysela <perex@suse.cz>2005-05-29 10:00:51 +0200
commit1a12de1edf234b54ce94971d5604f85809c391b9 (patch)
tree099cd910f5a313f17838e96740b50493ef16877c /sound/pci/hda/hda_generic.c
parenteb8caf30f4c059ddfdfa32b6034549622953db6f (diff)
downloadkernel_samsung_smdk4412-1a12de1edf234b54ce94971d5604f85809c391b9.zip
kernel_samsung_smdk4412-1a12de1edf234b54ce94971d5604f85809c391b9.tar.gz
kernel_samsung_smdk4412-1a12de1edf234b54ce94971d5604f85809c391b9.tar.bz2
[ALSA] hda: fix vref cap and ctl values
HDA Codec driver,HDA generic driver Fix some vref defines so they are valid for the different bits in the pin cap and pin control registers. Please apply. Signed-off-by: Matt <matt@embeddedalley.com> Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/pci/hda/hda_generic.c')
-rw-r--r--sound/pci/hda/hda_generic.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/pci/hda/hda_generic.c b/sound/pci/hda/hda_generic.c
index 69f7b6c..c233e7f 100644
--- a/sound/pci/hda/hda_generic.c
+++ b/sound/pci/hda/hda_generic.c
@@ -426,7 +426,7 @@ static const char *get_input_type(struct hda_gnode *node, unsigned int *pinctl)
return "Line";
case AC_JACK_CD:
if (pinctl)
- *pinctl |= AC_PIN_VREF_GRD;
+ *pinctl |= AC_PINCTL_VREF_GRD;
return "CD";
case AC_JACK_AUX:
if ((location & 0x0f) == AC_JACK_LOC_FRONT)