Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 8d4e1639 authored by Nick Dyer's avatar Nick Dyer Committed by Dmitry Torokhov
Browse files

Input: atmel_mxt_ts - return IRQ_NONE when interrupt handler fails

parent fb5e4c3e
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -590,7 +590,7 @@ static irqreturn_t mxt_interrupt(int irq, void *dev_id)
	do {
		if (mxt_read_message(data, &message)) {
			dev_err(dev, "Failed to read message\n");
			goto end;
			return IRQ_NONE;
		}

		reportid = message.reportid;
@@ -617,7 +617,6 @@ static irqreturn_t mxt_interrupt(int irq, void *dev_id)
		input_sync(data->input_dev);
	}

end:
	return IRQ_HANDLED;
}