diff options
author | Takashi Iwai <tiwai@suse.de> | 2006-01-12 05:45:51 -0500 |
---|---|---|
committer | Jaroslav Kysela <perex@suse.cz> | 2006-01-22 10:24:13 -0500 |
commit | da79e44df4fff22c7f815687ea210b2324b3507c (patch) | |
tree | 5b6353af788c3824157bd0ac1ee70c2e1a4a37a7 /sound | |
parent | 363fa1d615d93fe047659c16ff3277d78302b2eb (diff) |
[ALSA] ac97 - Fix CLFE channel setting of ALC850
Modules: AC97 Codec
Fix CLFE channel setting of ALC850 (ALSA bug#1731).
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound')
-rw-r--r-- | sound/pci/ac97/ac97_patch.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sound/pci/ac97/ac97_patch.c b/sound/pci/ac97/ac97_patch.c index bccce44421ec..a444a78c7c94 100644 --- a/sound/pci/ac97/ac97_patch.c +++ b/sound/pci/ac97/ac97_patch.c | |||
@@ -2235,9 +2235,9 @@ static void alc850_update_jacks(struct snd_ac97 *ac97) | |||
2235 | /* Vref disable (bit12), 1kOhm (bit13) */ | 2235 | /* Vref disable (bit12), 1kOhm (bit13) */ |
2236 | snd_ac97_update_bits(ac97, AC97_ALC850_MISC1, (1<<12)|(1<<13), | 2236 | snd_ac97_update_bits(ac97, AC97_ALC850_MISC1, (1<<12)|(1<<13), |
2237 | shared ? (1<<12) : (1<<13)); | 2237 | shared ? (1<<12) : (1<<13)); |
2238 | /* MIC-IN = 1, CENTER-LFE = 2 */ | 2238 | /* MIC-IN = 1, CENTER-LFE = 5 */ |
2239 | snd_ac97_update_bits(ac97, AC97_ALC850_JACK_SELECT, 7 << 4, | 2239 | snd_ac97_update_bits(ac97, AC97_ALC850_JACK_SELECT, 7 << 4, |
2240 | shared ? (2<<4) : (1<<4)); | 2240 | shared ? (5<<4) : (1<<4)); |
2241 | } | 2241 | } |
2242 | 2242 | ||
2243 | static const struct snd_kcontrol_new snd_ac97_controls_alc850[] = { | 2243 | static const struct snd_kcontrol_new snd_ac97_controls_alc850[] = { |