Commit c82c8abd authored by Takashi Iwai's avatar Takashi Iwai

ALSA: hda - Fix an "unused variable" compile warning

Forgot to remove an unused variable.
  sound/pci/hda/patch_realtek.c: In function ‘alc882_auto_init_analog_input’:
  sound/pci/hda/patch_realtek.c:7018: warning: unused variable ‘vref’
Signed-off-by: default avatarTakashi Iwai <tiwai@suse.de>
parent 53eff7e1
...@@ -7015,7 +7015,6 @@ static void alc882_auto_init_analog_input(struct hda_codec *codec) ...@@ -7015,7 +7015,6 @@ static void alc882_auto_init_analog_input(struct hda_codec *codec)
for (i = 0; i < AUTO_PIN_LAST; i++) { for (i = 0; i < AUTO_PIN_LAST; i++) {
hda_nid_t nid = spec->autocfg.input_pins[i]; hda_nid_t nid = spec->autocfg.input_pins[i];
unsigned int vref;
if (!nid) if (!nid)
continue; continue;
alc_set_input_pin(codec, nid, AUTO_PIN_FRONT_MIC /*i*/); alc_set_input_pin(codec, nid, AUTO_PIN_FRONT_MIC /*i*/);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment