[PATCH 10/11] input: Fixes for sidewinder.c

From: Vojtech Pavlik (vojtech@ucw.cz)
Date: Sat Jun 21 2003 - 08:51:57 EST


You can pull this changeset from:
        bk://kernel.bkbits.net/vojtech/input

===================================================================

ChangeSet@1.1368, 2003-06-21 04:48:10-07:00, vojtech@kernel.bkbits.net
  input: Fixes for sidewinder.c: Workaround for
         misbehaving 3DPro joysticks, don't trust FreestylePro
         1-bit data packet for data width recognition, invert
         FreestylePro buttons.

 sidewinder.c | 11 ++++++-----
 1 files changed, 6 insertions(+), 5 deletions(-)

===================================================================

diff -Nru a/drivers/input/joystick/sidewinder.c b/drivers/input/joystick/sidewinder.c
--- a/drivers/input/joystick/sidewinder.c Sat Jun 21 15:25:59 2003
+++ b/drivers/input/joystick/sidewinder.c Sat Jun 21 15:25:59 2003
@@ -378,10 +378,10 @@
                         for (j = 0; j < 6; j++)
                                 input_report_key(dev, sw_btn[SW_ID_FSP][j], !GB(j+10,1));
 
- input_report_key(dev, BTN_TR, GB(26,1));
- input_report_key(dev, BTN_START, GB(27,1));
- input_report_key(dev, BTN_MODE, GB(38,1));
- input_report_key(dev, BTN_SELECT, GB(39,1));
+ input_report_key(dev, BTN_TR, !GB(26,1));
+ input_report_key(dev, BTN_START, !GB(27,1));
+ input_report_key(dev, BTN_MODE, !GB(38,1));
+ input_report_key(dev, BTN_SELECT, !GB(39,1));
 
                         input_sync(dev);
 
@@ -602,7 +602,6 @@
                 gameport->phys, gameport->io, gameport->speed);
 
         i = sw_read_packet(gameport, buf, SW_LENGTH, 0); /* Read normal packet */
- m |= sw_guess_mode(buf, i); /* Data packet (1-bit) can carry mode info [FSP] */
         udelay(SW_TIMEOUT);
         dbg("Init 1: Mode %d. Length %d.", m , i);
 
@@ -676,6 +675,8 @@
                                         } else
                                         sw->type = SW_ID_PP;
                                         break;
+ case 66:
+ sw->bits = 3;
                                 case 198:
                                         sw->length = 22;
                                 case 64:

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/



This archive was generated by hypermail 2b29 : Mon Jun 23 2003 - 22:00:36 EST