Browse Source

ALSA: HDA: Fixup Realtek headphone pin initialization

This typo caused headphone pins not to be initialized correctly.

BugLink: https://bugs.launchpad.net/bugs/871582
Reported-by: Effenberg
Signed-off-by: David Henningsson <david.henningsson@canonical.com>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
David Henningsson 13 years ago
parent
commit
636030e90e
1 changed files with 1 additions and 1 deletions
  1. 1 1
      sound/pci/hda/patch_realtek.c

+ 1 - 1
sound/pci/hda/patch_realtek.c

@@ -3263,7 +3263,7 @@ static void alc_auto_init_extra_out(struct hda_codec *codec)
 	int i;
 	hda_nid_t pin, dac;
 
-	for (i = 0; i < spec->autocfg.speaker_outs; i++) {
+	for (i = 0; i < spec->autocfg.hp_outs; i++) {
 		pin = spec->autocfg.hp_pins[i];
 		if (!pin)
 			break;