[ALSA] dbri - Fix broken change for value range checks

The last patch for value range checks included a broken merge result.
Now fixed properly.

Signed-off-by: Takashi Iwai <tiwai@suse.de>
Signed-off-by: Jaroslav Kysela <perex@perex.cz>
This commit is contained in:
Takashi Iwai 2007-11-20 18:31:22 +01:00 committed by Jaroslav Kysela
parent dec44dbe01
commit 4581aa36fc

View file

@ -2292,12 +2292,12 @@ static int snd_cs4215_put_volume(struct snd_kcontrol *kcontrol,
return -EINVAL; return -EINVAL;
} }
if (info->left_gain != if (info->left_gain != vol[0]) {
info->left_gain = ucontrol->value.integer.value[0]; info->left_gain = vol[0];
changed = 1; changed = 1;
} }
if (info->right_gain != ucontrol->value.integer.value[1]) { if (info->right_gain != vol[1]) {
info->right_gain = ucontrol->value.integer.value[1]; info->right_gain = vol[1];
changed = 1; changed = 1;
} }
if (changed) { if (changed) {