soundwire: qcom: use signed variable for error return
authorVinod Koul <vkoul@kernel.org>
Wed, 31 Mar 2021 15:55:20 +0000 (21:25 +0530)
committerVinod Koul <vkoul@kernel.org>
Thu, 1 Apr 2021 07:08:26 +0000 (12:38 +0530)
We get warning of using a unsigned variable being compared to less than
zero. The comparison is correct as it checks for errors from previous
call to qcom_swrm_get_alert_slave_dev_num(), so we should use a signed
variable here.

While at it, drop the superfluous initialization as well

drivers/soundwire/qcom.c: qcom_swrm_irq_handler() warn: impossible
condition '(devnum < 0) => (0-255 < 0)'

Reported-by: kernel test robot <lkp@intel.com>
Signed-off-by: Vinod Koul <vkoul@kernel.org>
Reviewed-by: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
Reviewed-by: Bjorn Andersson <bjorn.andersson@linaro.org>
Link: https://lore.kernel.org/r/20210331155520.2987823-1-vkoul@kernel.org
Signed-off-by: Vinod Koul <vkoul@kernel.org>
drivers/soundwire/qcom.c

index b08ecb9b418c6be183bcdd603dd629fe109a17ab..ec86c4e53fdb86c6f6fcb143d0745e70ae02214c 100644 (file)
@@ -428,7 +428,7 @@ static irqreturn_t qcom_swrm_irq_handler(int irq, void *dev_id)
        struct qcom_swrm_ctrl *swrm = dev_id;
        u32 value, intr_sts, intr_sts_masked, slave_status;
        u32 i;
-       u8 devnum = 0;
+       int devnum;
        int ret = IRQ_HANDLED;
 
        swrm->reg_read(swrm, SWRM_INTERRUPT_STATUS, &intr_sts);