summaryrefslogtreecommitdiff
path: root/sound
diff options
context:
space:
mode:
authorTomer Barletz <barletz@gmail.com>2015-08-02 02:08:57 -0700
committerJiri Slaby <jslaby@suse.cz>2016-09-29 11:14:04 +0200
commitf1e02250a6d3d79ffbfec6b7340ed5ee6c8e78f7 (patch)
tree6a4e4a3fc9900da9a6d0784119a7ddc47d5589f0 /sound
parenta02b9364200829b15937dc274325c317c36ebc73 (diff)
ALSA: oxygen: Fix logical-not-parentheses warning
commit 8ec7cfce3762299ae289c384e281b2f4010ae231 upstream. 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> Cc: Willy Tarreau <w@1wt.eu> Signed-off-by: Jiri Slaby <jslaby@suse.cz>
Diffstat (limited to 'sound')
-rw-r--r--sound/pci/oxygen/oxygen_mixer.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/pci/oxygen/oxygen_mixer.c b/sound/pci/oxygen/oxygen_mixer.c
index c0dbb52d45be..1e4bcb900fc6 100644
--- a/sound/pci/oxygen/oxygen_mixer.c
+++ b/sound/pci/oxygen/oxygen_mixer.c
@@ -88,7 +88,7 @@ static int dac_mute_put(struct snd_kcontrol *ctl,
int changed;
mutex_lock(&chip->mutex);
- changed = !value->value.integer.value[0] != chip->dac_mute;
+ changed = (!value->value.integer.value[0]) != chip->dac_mute;
if (changed) {
chip->dac_mute = !value->value.integer.value[0];
chip->model.update_dac_mute(chip);