projects
/
GitHub
/
LineageOS
/
G12
/
android_kernel_amlogic_linux-4.9.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
aafad56
)
[ALSA] ac97 - fix Mic jack sharing on AD1888 codecs
author
Clemens Ladisch
<clemens@ladisch.de>
Tue, 10 May 2005 12:48:37 +0000
(14:48 +0200)
committer
Jaroslav Kysela
<perex@suse.cz>
Sun, 29 May 2005 08:06:36 +0000
(10:06 +0200)
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>
sound/pci/ac97/ac97_patch.c
patch
|
blob
|
blame
|
history
diff --git
a/sound/pci/ac97/ac97_patch.c
b/sound/pci/ac97/ac97_patch.c
index 737c4bb94d2a12aa04d6c047bfb8101253047fdc..05efff08ddcc29674c1bfac08b5264ccb28c3a91 100644
(file)
--- 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 << 1
3
);
+ is_shared_micin(ac97) ? 0 : 1 << 1
1
);
}
static const snd_kcontrol_new_t snd_ac97_ad1888_controls[] = {