Commit 1487c967 authored by Jaroslav Kysela's avatar Jaroslav Kysela

ALSA CVS update

EMU10K1/EMU10K2 driver
Fix Audigy + AC97 Master Volume

This patch sets AC97 Master  volume to 0 (0 dB). Previous value was
0x0202 (-3 dB) (this was my misstake).
Signed-off-by: default avatarPeter Zubaj <pzad@pobox.sk>
Signed-off-by: default avatarTakashi Iwai <tiwai@suse.de>
parent 67eec1df
......@@ -527,7 +527,7 @@ int __devinit snd_emu10k1_mixer(emu10k1_t *emu)
return err;
if (emu->audigy) {
/* set master volume to 0 dB */
snd_ac97_write(emu->ac97, AC97_MASTER, 0x0202);
snd_ac97_write(emu->ac97, AC97_MASTER, 0x0000);
/* set capture source to mic */
snd_ac97_write(emu->ac97, AC97_REC_SEL, 0x0000);
c = audigy_remove_ctls;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment