diff options
author | Clemens Ladisch <clemens@ladisch.de> | 2005-05-10 14:48:37 +0200 |
---|---|---|
committer | Jaroslav Kysela <perex@suse.cz> | 2005-05-29 10:06:36 +0200 |
commit | 3296480674e127601f453db6301bfbcbacb0d123 (patch) | |
tree | 47e67ce21e96b5b3e4fc1fa395ed70dbf2330641 /sound | |
parent | aafad5629a949d0ad41180f8a746b6cd7654e317 (diff) | |
download | op-kernel-dev-3296480674e127601f453db6301bfbcbacb0d123.zip op-kernel-dev-3296480674e127601f453db6301bfbcbacb0d123.tar.gz |
[ALSA] ac97 - fix Mic jack sharing on AD1888 codecs
AC97 Codec
The code for modifying the center/LFE disable bit on AD1888 codecs
accidentally toggled the mute split bit instead.
Signed-off-by: Clemens Ladisch <clemens@ladisch.de>
Diffstat (limited to 'sound')
-rw-r--r-- | sound/pci/ac97/ac97_patch.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/pci/ac97/ac97_patch.c b/sound/pci/ac97/ac97_patch.c index 737c4bb..05efff0 100644 --- a/sound/pci/ac97/ac97_patch.c +++ b/sound/pci/ac97/ac97_patch.c @@ -1507,7 +1507,7 @@ static void ad1888_update_jacks(ac97_t *ac97) is_shared_linein(ac97) ? 0 : 1 << 12); /* shared Mic */ snd_ac97_update_bits(ac97, AC97_AD_MISC, 1 << 11, - is_shared_micin(ac97) ? 0 : 1 << 13); + is_shared_micin(ac97) ? 0 : 1 << 11); } static const snd_kcontrol_new_t snd_ac97_ad1888_controls[] = { |