From 34955544342b9ed90a2c3f114e2259be2808f9d5 Mon Sep 17 00:00:00 2001 From: Steven Whitehouse Date: Tue, 27 Nov 2007 00:45:34 -0500 Subject: [PATCH] --- yaml --- r: 84340 b: refs/heads/master c: 75570af1504141316c22dfb6796cd13bf5b11fd2 h: refs/heads/master v: v3 --- [refs] | 2 +- trunk/Documentation/input/input-programming.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/[refs] b/[refs] index 1d26e18e211a..f8ac88585ff5 100644 --- a/[refs] +++ b/[refs] @@ -1,2 +1,2 @@ --- -refs/heads/master: 374766bc2aa784f7a0833cc7563f057241ca7815 +refs/heads/master: 75570af1504141316c22dfb6796cd13bf5b11fd2 diff --git a/trunk/Documentation/input/input-programming.txt b/trunk/Documentation/input/input-programming.txt index 47fc86830cd7..81905e81585e 100644 --- a/trunk/Documentation/input/input-programming.txt +++ b/trunk/Documentation/input/input-programming.txt @@ -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); }