mirror of https://gitee.com/openkylin/linux.git
ALSA: oxygen: Fix logical-not-parentheses warning
This fixes the following warning, that is seen with gcc 5.1: warning: logical not is only applied to the left hand side of comparison [-Wlogical-not-parentheses]. Signed-off-by: Tomer Barletz <barletz@gmail.com> Signed-off-by: Takashi Iwai <tiwai@suse.de>
This commit is contained in:
parent
649ccd0853
commit
8ec7cfce37
|
@ -88,7 +88,7 @@ static int dac_mute_put(struct snd_kcontrol *ctl,
|
||||||
int changed;
|
int changed;
|
||||||
|
|
||||||
mutex_lock(&chip->mutex);
|
mutex_lock(&chip->mutex);
|
||||||
changed = !value->value.integer.value[0] != chip->dac_mute;
|
changed = (!value->value.integer.value[0]) != chip->dac_mute;
|
||||||
if (changed) {
|
if (changed) {
|
||||||
chip->dac_mute = !value->value.integer.value[0];
|
chip->dac_mute = !value->value.integer.value[0];
|
||||||
chip->model.update_dac_mute(chip);
|
chip->model.update_dac_mute(chip);
|
||||||
|
|
Loading…
Reference in New Issue