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

Commit 7bd27557 authored by Linux Build Service Account's avatar Linux Build Service Account Committed by Gerrit - the friendly Code Review server
Browse files

Merge "input: touchscreen: Add threaded irq support to Goodix driver"

parents f4dac5b2 f7d5ed90
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -1207,7 +1207,8 @@ static int gtp_request_irq(struct goodix_ts_data *ts)
	int ret;
	const u8 irq_table[] = GTP_IRQ_TAB;

	ret = request_irq(ts->client->irq, goodix_ts_irq_handler,
	ret = request_threaded_irq(ts->client->irq, NULL,
			goodix_ts_irq_handler,
			irq_table[ts->int_trigger_type],
			ts->client->name, ts);
	if (ret) {