[<prev] [next>] [day] [month] [year] [list]
Message-Id: <200612011521.32503.m.kozlowski@tuxland.pl>
Date: Fri, 1 Dec 2006 15:21:32 +0100
From: Mariusz Kozlowski <m.kozlowski@...land.pl>
To: Willy Tarreau <wtarreau@...a.kernel.org>
Cc: linux-kernel@...r.kernel.org
Subject: [2.4 PATCH] amijoy joystick parenthesis fix
Hello,
This patch adds missing parenthesis in amijoy_interrupt() code.
Signed-off-by: Mariusz Kozlowski <m.kozlowski@...land.pl>
drivers/char/joystick/amijoy.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
--- linux-2.4.34-pre6-a/drivers/char/joystick/amijoy.c 2001-09-13 00:34:06.000000000 +0200
+++ linux-2.4.34-pre6-b/drivers/char/joystick/amijoy.c 2006-12-01 12:19:23.000000000 +0100
@@ -64,9 +64,9 @@ static void amijoy_interrupt(int irq, vo
input_report_key(amijoy_dev + i, BTN_TRIGGER, button);
- input_report_abs(amijoy_dev + i, ABS_X, ((data >> 1) & 1) - ((data >> 9) & 1);
+ input_report_abs(amijoy_dev + i, ABS_X, ((data >> 1) & 1) - ((data >> 9) & 1));
data = ~(data ^ (data << 1));
- input_report_abs(amijoy_dev + i, ABS_Y, ((data >> 1) & 1) - ((data >> 9) & 1);
+ input_report_abs(amijoy_dev + i, ABS_Y, ((data >> 1) & 1) - ((data >> 9) & 1));
}
}
--
Regards,
Mariusz Kozlowski
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists