Input: iforce - flip initial RUDDER orientation to correct one Remove the inversion from the data acqisition routine Signed-off-by: Johannes Ebke --- diff -ru drivers/input/joystick/iforce_dmitry/iforce-packets.c drivers/input/joystick/iforce/iforce-packets.c --- drivers/input/joystick/iforce_dmitry/iforce-packets.c 2009-12-30 09:42:22.000000000 +0100 +++ drivers/input/joystick/iforce/iforce-packets.c 2009-12-30 09:32:34.000000000 +0100 @@ -193,7 +193,7 @@ if (HI(cmd) == 6) { input_report_abs(dev, ABS_THROTTLE, data[4]); if (LO(cmd) >= 8 && test_bit(ABS_RUDDER ,dev->absbit)) - input_report_abs(dev, ABS_RUDDER, 255 - data[7]); + input_report_abs(dev, ABS_RUDDER, data[7]); } else { input_report_abs(dev, ABS_THROTTLE, 255 - data[4]); if (LO(cmd) >= 8 && test_bit(ABS_RUDDER ,dev->absbit))