[patch] hdaps: missing an axis.

From: Robert Love
Date: Tue Nov 22 2005 - 10:58:47 EST



Greg,

Trivial patch to report both hdaps axises to the joystick device, not
just the X axis.

Patch originally by Eugeniy Meshcheryakov <eugen@xxxxxxxxxxxx>.

Signed-off-by: Robert Love <rml@xxxxxxxxxx>

Robert Love


diff -urN a/drivers/hwmon/hdaps.c b/drivers/hwmon/hdaps.c
--- a/drivers/hwmon/hdaps.c Wed Nov 16 17:18:55 2005
+++ b/drivers/hwmon/hdaps.c Tue Nov 22 14:24:25 2005
@@ -570,7 +570,7 @@
hdaps_idev->evbit[0] = BIT(EV_ABS);
input_set_abs_params(hdaps_idev, ABS_X,
-256, 256, HDAPS_INPUT_FUZZ, HDAPS_INPUT_FLAT);
- input_set_abs_params(hdaps_idev, ABS_X,
+ input_set_abs_params(hdaps_idev, ABS_Y,
-256, 256, HDAPS_INPUT_FUZZ, HDAPS_INPUT_FLAT);

input_register_device(hdaps_idev);


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