From 25c6fdb040e3b6057ff147e801343e60937594cb Mon Sep 17 00:00:00 2001 From: Mark Brown Date: Thu, 29 Nov 2012 15:16:10 +0000 Subject: [PATCH] ASoC: arizona: Add parentheses Some compiler versions complain. Reported-by: Dan Carpenter Signed-off-by: Mark Brown --- sound/soc/codecs/wm_adsp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sound/soc/codecs/wm_adsp.c b/sound/soc/codecs/wm_adsp.c index c0b7f9d18b23..7fdb68ef384e 100644 --- a/sound/soc/codecs/wm_adsp.c +++ b/sound/soc/codecs/wm_adsp.c @@ -553,7 +553,7 @@ int wm_adsp2_event(struct snd_soc_dapm_widget *w, return ret; } - if (val & ADSP2_CLK_SEL_MASK >= 3) { + if ((val & ADSP2_CLK_SEL_MASK) >= 3) { ret = regulator_enable(dsp->dvfs); if (ret != 0) { dev_err(dsp->dev, -- 2.34.1