HID: 3m: Output proper orientation range
authorHenrik Rydberg <rydberg@euromail.se>
Tue, 21 Sep 2010 14:16:09 +0000 (16:16 +0200)
committerJiri Kosina <jkosina@suse.cz>
Tue, 21 Sep 2010 14:16:09 +0000 (16:16 +0200)
The range of orientation values for height/width devices should
be [0, 1], but is currently set to [1, 1]. Having min == max also
breaks uinput device setup. Fixed with this patch.

Signed-off-by: Henrik Rydberg <rydberg@euromail.se>
Acked-by: Dmitry Torokhov <dtor@mail.ru>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
drivers/hid/hid-3m-pct.c

index 1057430..d2fda78 100644 (file)
@@ -94,7 +94,7 @@ static int mmm_input_mapping(struct hid_device *hdev, struct hid_input *hi,
                        hid_map_usage(hi, usage, bit, max,
                                        EV_ABS, ABS_MT_TOUCH_MINOR);
                        input_set_abs_params(hi->input, ABS_MT_ORIENTATION,
-                                       1, 1, 0, 0);
+                                       0, 1, 0, 0);
                        return 1;
                case HID_DG_CONTACTID:
                        field->logical_maximum = MAX_TRKID;