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

Commit 75570af1 authored by Steven Whitehouse's avatar Steven Whitehouse Committed by Dmitry Torokhov
Browse files

Input: fix bug in example code



The input example driver uses BTN_0 in the later stages of the
example, so this changes the interrupt routine to match.

Signed-off-by: default avatarSteven Whitehouse <swhiteho@redhat.com>
Signed-off-by: default avatarDmitry Torokhov <dtor@mail.ru>
parent 374766bc
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -22,7 +22,7 @@ static struct input_dev *button_dev;

static void button_interrupt(int irq, void *dummy, struct pt_regs *fp)
{
	input_report_key(button_dev, BTN_1, inb(BUTTON_PORT) & 1);
	input_report_key(button_dev, BTN_0, inb(BUTTON_PORT) & 1);
	input_sync(button_dev);
}