summaryrefslogtreecommitdiffstats
path: root/sound/soc/codecs/da7219.c
diff options
context:
space:
mode:
authorPierre-Louis Bossart2019-01-05 03:02:47 +0100
committerMark Brown2019-01-07 17:53:52 +0100
commitb468f379e1e01b723825267431d3ba60f824fda2 (patch)
tree6c300240a46ee96661771501b053a3b3e0227933 /sound/soc/codecs/da7219.c
parentASoC: da7219: fix endianness issues (diff)
downloadkernel-qcow2-linux-b468f379e1e01b723825267431d3ba60f824fda2.tar.gz
kernel-qcow2-linux-b468f379e1e01b723825267431d3ba60f824fda2.tar.xz
kernel-qcow2-linux-b468f379e1e01b723825267431d3ba60f824fda2.zip
ASoC: da7219: use logical AND
Reported by Sparse: da7219.c:841:57: warning: dubious: x & !y Cc: Adam Thomson <Adam.Thomson.Opensource@diasemi.com> Signed-off-by: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com> Reviewed-by: Adam Thomson <Adam.Thomson.Opensource@diasemi.com> Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound/soc/codecs/da7219.c')
-rw-r--r--sound/soc/codecs/da7219.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/soc/codecs/da7219.c b/sound/soc/codecs/da7219.c
index ce165047b9f9..513ec0368653 100644
--- a/sound/soc/codecs/da7219.c
+++ b/sound/soc/codecs/da7219.c
@@ -838,7 +838,7 @@ static int da7219_dai_event(struct snd_soc_dapm_widget *w,
++i;
msleep(50);
}
- } while ((i < DA7219_SRM_CHECK_RETRIES) & (!srm_lock));
+ } while ((i < DA7219_SRM_CHECK_RETRIES) && (!srm_lock));
if (!srm_lock)
dev_warn(component->dev, "SRM failed to lock\n");