diff options
Diffstat (limited to 'drivers/input')
| -rw-r--r-- | drivers/input/touchscreen/atmel_mxt_ts.c | 7 | 
1 files changed, 6 insertions, 1 deletions
diff --git a/drivers/input/touchscreen/atmel_mxt_ts.c b/drivers/input/touchscreen/atmel_mxt_ts.c index 8eebdfc92f1..93f1c3bf1c1 100644 --- a/drivers/input/touchscreen/atmel_mxt_ts.c +++ b/drivers/input/touchscreen/atmel_mxt_ts.c @@ -1223,7 +1223,12 @@ static irqreturn_t mxt_process_messages_t44(struct mxt_data *data)  	count = data->msg_buf[0];  	if (count == 0) { -		dev_warn(dev, "Interrupt triggered but zero messages\n"); +		/* +		 * This condition is caused by the CHG line being configured +		 * in Mode 0. It results in unnecessary I2C operations but it +		 * is benign. +		 */ +		dev_dbg(dev, "Interrupt triggered but zero messages\n");  		return IRQ_NONE;  	} else if (count > data->max_reportid) {  		dev_err(dev, "T44 count %d exceeded max report id\n", count);  |