--------------------- PatchSet 3164 Date: 2005/05/10 14:48:37 Author: cladisch Branch: HEAD Tag: (none) Log: Summary: ac97 - fix Mic jack sharing on AD1888 codecs The code for modifying the center/LFE disable bit on AD1888 codecs accidentally toggled the mute split bit instead. Members: pci/ac97/ac97_patch.c:1.80->1.81 Index: /sound/pci/ac97/ac97_patch.c diff -u /sound/pci/ac97/ac97_patch.c.old /sound/pci/ac97/ac97_patch.c --- /sound/pci/ac97/ac97_patch.c.old Mon Apr 25 03:34:33 2005 +++ /sound/pci/ac97/ac97_patch.c Tue May 10 06:48:37 2005 @@ -1507,7 +1507,7 @@ 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[] = {