Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Input: tsc2004/5 - do not hard code interrupt trigger

Instead of hard-coding interrupt trigger rely on ACPI/DT/board code
to set it up appropriately.

Link: https://lore.kernel.org/r/20240711172719.1248373-2-dmitry.torokhov@gmail.com
Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>

+2 -4
+2 -4
drivers/input/touchscreen/tsc200x-core.c
··· 542 542 /* Ensure the touchscreen is off */ 543 543 tsc200x_stop_scan(ts); 544 544 545 - error = devm_request_threaded_irq(dev, irq, NULL, 546 - tsc200x_irq_thread, 547 - IRQF_TRIGGER_RISING | IRQF_ONESHOT, 548 - "tsc200x", ts); 545 + error = devm_request_threaded_irq(dev, irq, NULL, tsc200x_irq_thread, 546 + IRQF_ONESHOT, "tsc200x", ts); 549 547 if (error) { 550 548 dev_err(dev, "Failed to request irq, err: %d\n", error); 551 549 return error;