[ALSA] Add a workaround for ASUS A6KM
Added a workaround for ASUS A6KM board that requires EAPD rather than SPDIF-in. Signed-off-by: Takashi Iwai <tiwai@suse.de>
This commit is contained in:
parent
886da8677d
commit
eed656493a
1 changed files with 4 additions and 1 deletions
|
@ -2048,7 +2048,10 @@ int patch_alc650(struct snd_ac97 * ac97)
|
||||||
/* Enable SPDIF-IN only on Rev.E and above */
|
/* Enable SPDIF-IN only on Rev.E and above */
|
||||||
val = snd_ac97_read(ac97, AC97_ALC650_CLOCK);
|
val = snd_ac97_read(ac97, AC97_ALC650_CLOCK);
|
||||||
/* SPDIF IN with pin 47 */
|
/* SPDIF IN with pin 47 */
|
||||||
if (ac97->spec.dev_flags)
|
if (ac97->spec.dev_flags &&
|
||||||
|
/* ASUS A6KM requires EAPD */
|
||||||
|
! (ac97->subsystem_vendor == 0x1043 &&
|
||||||
|
ac97->subsystem_device == 0x1103))
|
||||||
val |= 0x03; /* enable */
|
val |= 0x03; /* enable */
|
||||||
else
|
else
|
||||||
val &= ~0x03; /* disable */
|
val &= ~0x03; /* disable */
|
||||||
|
|
Loading…
Add table
Reference in a new issue