]> Git Repo - J-linux.git/commitdiff
Input: ad7879 - add check for read errors in interrupt
authorAditya Pakki <[email protected]>
Mon, 7 Jan 2019 19:53:59 +0000 (11:53 -0800)
committerDmitry Torokhov <[email protected]>
Mon, 7 Jan 2019 19:59:57 +0000 (11:59 -0800)
regmap_bulk_read() can return a non zero value on failure. The fix checks
if the function call succeeded before calling mod_timer. The issue was
identified by a static analysis tool.

Signed-off-by: Aditya Pakki <[email protected]>
Signed-off-by: Dmitry Torokhov <[email protected]>
drivers/input/touchscreen/ad7879.c

index 6fa714c587b4f95b951ac22124af8b2a0a69b5b5..3a016f43fb85698182954406ad4b5022060aeecf 100644 (file)
@@ -246,11 +246,14 @@ static void ad7879_timer(struct timer_list *t)
 static irqreturn_t ad7879_irq(int irq, void *handle)
 {
        struct ad7879 *ts = handle;
+       int error;
 
-       regmap_bulk_read(ts->regmap, AD7879_REG_XPLUS,
-                        ts->conversion_data, AD7879_NR_SENSE);
-
-       if (!ad7879_report(ts))
+       error = regmap_bulk_read(ts->regmap, AD7879_REG_XPLUS,
+                                ts->conversion_data, AD7879_NR_SENSE);
+       if (error)
+               dev_err_ratelimited(ts->dev, "failed to read %#02x: %d\n",
+                                   AD7879_REG_XPLUS, error);
+       else if (!ad7879_report(ts))
                mod_timer(&ts->timer, jiffies + TS_PEN_UP_TIMEOUT);
 
        return IRQ_HANDLED;
This page took 0.053264 seconds and 4 git commands to generate.