aboutsummaryrefslogtreecommitdiffstats
path: root/sound
diff options
context:
space:
mode:
authorTakashi Iwai <tiwai@suse.de>2005-11-24 16:05:04 +0100
committerJaroslav Kysela <perex@suse.cz>2006-01-03 12:29:45 +0100
commitb2ec642362eef10f660e2b857dda12e2d61e0198 (patch)
treed8370e3a0cdaef7d2000c9576b8dce06837b4907 /sound
parent606ad75fb5372c0edb5ee6276c8e29fcb525f3e1 (diff)
downloadlinux-b2ec642362eef10f660e2b857dda12e2d61e0198.tar.gz
[ALSA] hda-codec - Fix channel mode helper
Modules: HDA Codec driver Fix the channel mode helper (for put callback). Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound')
-rw-r--r--sound/pci/hda/hda_codec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/pci/hda/hda_codec.c b/sound/pci/hda/hda_codec.c
index 402ce00c6a137a..5ead2a3d05adb9 100644
--- a/sound/pci/hda/hda_codec.c
+++ b/sound/pci/hda/hda_codec.c
@@ -1771,7 +1771,7 @@ int snd_hda_ch_mode_put(struct hda_codec *codec, struct snd_ctl_elem_value *ucon
mode = ucontrol->value.enumerated.item[0];
snd_assert(mode < num_chmodes, return -EINVAL);
- if (*max_channelsp && ! codec->in_resume)
+ if (*max_channelsp == chmode[mode].channels && ! codec->in_resume)
return 0;
/* change the current channel setting */
*max_channelsp = chmode[mode].channels;