[alsa-devel] [PATCH] ALSA: HDA: patch_analog: Fix SPDIF output on AD1989B
From: Robin H. Johnson robbat2@gentoo.org
The SPDIF pins for AD1989 are not enabled by default. Set OUT bit so that they actually work. Also initialize the HDMI SPDIF at the same time.
Signed-off-by: Robin H. Johnson robbat2@gentoo.org
diff --git a/sound/pci/hda/patch_analog.c b/sound/pci/hda/patch_analog.c index b037324..42b1a23 100644 --- a/sound/pci/hda/patch_analog.c +++ b/sound/pci/hda/patch_analog.c @@ -2255,8 +2255,12 @@ static struct hda_verb ad1988_spdif_init_verbs[] = {
/* AD1989 has no ADC -> SPDIF route */ static struct hda_verb ad1989_spdif_init_verbs[] = { - /* SPDIF out pin */ + /* SPDIF-1 out pin */ + {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT }, {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE | 0x27}, /* 0dB */ + /* SPDIF-2/HDMI out pin */ + {0x1d, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT }, + {0x1d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE | 0x27}, /* 0dB */ { } };
At Sat, 13 Sep 2008 16:55:00 -0700, robbat2@gentoo.org wrote:
From: Robin H. Johnson robbat2@gentoo.org
The SPDIF pins for AD1989 are not enabled by default. Set OUT bit so that they actually work. Also initialize the HDMI SPDIF at the same time.
Signed-off-by: Robin H. Johnson robbat2@gentoo.org
Thanks, applied together with all your other patches.
Takashi
participants (2)
-
robbat2@gentoo.org
-
Takashi Iwai