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;