]> git.proxmox.com Git - mirror_ubuntu-eoan-kernel.git/commitdiff
ASoC: codecs: msm8916-wcd-analog: always true condition
authorDan Carpenter <dan.carpenter@oracle.com>
Thu, 24 Aug 2017 10:07:41 +0000 (13:07 +0300)
committerMark Brown <broonie@kernel.org>
Thu, 24 Aug 2017 10:28:24 +0000 (11:28 +0100)
Static checkers complain that unsigned int val is always >= 0.  The
context is that snd_soc_read() returns -1U on error.  This is harmless
because we're checking that CDC_A_MBHC_RESULT_1_BTN_RESULT_MASK is not
set, and it will always be set for -1U.  I could have just removed the
check against -1 but I preserved it because I thought it helped with
readability.

Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
sound/soc/codecs/msm8916-wcd-analog.c

index f834a639b3505d8d9c5846fa38f95a366c7087d8..cd4d60ef4c77c390235cb6dff25fa1f188210006 100644 (file)
@@ -949,7 +949,7 @@ static irqreturn_t mbhc_btn_release_irq_handler(int irq, void *arg)
                u32 val = snd_soc_read(codec, CDC_A_MBHC_RESULT_1);
 
                /* check if its BTN0 thats released */
-               if ((val >= 0) && !(val & CDC_A_MBHC_RESULT_1_BTN_RESULT_MASK))
+               if ((val != -1) && !(val & CDC_A_MBHC_RESULT_1_BTN_RESULT_MASK))
                        priv->mbhc_btn0_pressed = false;
 
        } else {