diff options
Diffstat (limited to 'sound/pci/ac97/ac97_patch.c')
-rw-r--r-- | sound/pci/ac97/ac97_patch.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/sound/pci/ac97/ac97_patch.c b/sound/pci/ac97/ac97_patch.c index 4d9cf37300f7..720b419e0c63 100644 --- a/sound/pci/ac97/ac97_patch.c +++ b/sound/pci/ac97/ac97_patch.c | |||
@@ -2048,7 +2048,10 @@ int patch_alc650(struct snd_ac97 * ac97) | |||
2048 | /* Enable SPDIF-IN only on Rev.E and above */ | 2048 | /* Enable SPDIF-IN only on Rev.E and above */ |
2049 | val = snd_ac97_read(ac97, AC97_ALC650_CLOCK); | 2049 | val = snd_ac97_read(ac97, AC97_ALC650_CLOCK); |
2050 | /* SPDIF IN with pin 47 */ | 2050 | /* SPDIF IN with pin 47 */ |
2051 | if (ac97->spec.dev_flags) | 2051 | if (ac97->spec.dev_flags && |
2052 | /* ASUS A6KM requires EAPD */ | ||
2053 | ! (ac97->subsystem_vendor == 0x1043 && | ||
2054 | ac97->subsystem_device == 0x1103)) | ||
2052 | val |= 0x03; /* enable */ | 2055 | val |= 0x03; /* enable */ |
2053 | else | 2056 | else |
2054 | val &= ~0x03; /* disable */ | 2057 | val &= ~0x03; /* disable */ |