diff options
author | Simon Wood <simon@mungewell.org> | 2013-02-19 22:25:13 -0500 |
---|---|---|
committer | Jiri Kosina <jkosina@suse.cz> | 2013-02-20 04:19:10 -0500 |
commit | d50bbd008ac3ead5eb8990fac1908c4a53e7a164 (patch) | |
tree | d96a1377276ceec98402a13b94c32aa309091909 /drivers/hid/hid-lg4ff.c | |
parent | 94b3f712fe2cd5c33d57ca0ab9604d2402bc72cd (diff) |
HID: LG4FF: Remove unnecessary deadzone code
This patch removes code which is now unnecessary for setting the fuzz/flat
characterics for the logitech DFP wheel. This is now done in the previous
patch by marking the wheel as a multi-axis device.
Signed-off-by: Simon Wood <simon@mungewell.org>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
Diffstat (limited to 'drivers/hid/hid-lg4ff.c')
-rw-r--r-- | drivers/hid/hid-lg4ff.c | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/drivers/hid/hid-lg4ff.c b/drivers/hid/hid-lg4ff.c index d7947c701f30..65a6ec8d3742 100644 --- a/drivers/hid/hid-lg4ff.c +++ b/drivers/hid/hid-lg4ff.c | |||
@@ -43,11 +43,6 @@ | |||
43 | #define G27_REV_MAJ 0x12 | 43 | #define G27_REV_MAJ 0x12 |
44 | #define G27_REV_MIN 0x38 | 44 | #define G27_REV_MIN 0x38 |
45 | 45 | ||
46 | #define DFP_X_MIN 0 | ||
47 | #define DFP_X_MAX 16383 | ||
48 | #define DFP_PEDAL_MIN 0 | ||
49 | #define DFP_PEDAL_MAX 255 | ||
50 | |||
51 | #define to_hid_device(pdev) container_of(pdev, struct hid_device, dev) | 46 | #define to_hid_device(pdev) container_of(pdev, struct hid_device, dev) |
52 | 47 | ||
53 | static void hid_lg4ff_set_range_dfp(struct hid_device *hid, u16 range); | 48 | static void hid_lg4ff_set_range_dfp(struct hid_device *hid, u16 range); |
@@ -598,18 +593,6 @@ int lg4ff_init(struct hid_device *hid) | |||
598 | return error; | 593 | return error; |
599 | dbg_hid("sysfs interface created\n"); | 594 | dbg_hid("sysfs interface created\n"); |
600 | 595 | ||
601 | /* Set default axes parameters */ | ||
602 | switch (lg4ff_devices[i].product_id) { | ||
603 | case USB_DEVICE_ID_LOGITECH_DFP_WHEEL: | ||
604 | dbg_hid("Setting axes parameters for Driving Force Pro\n"); | ||
605 | input_set_abs_params(dev, ABS_X, DFP_X_MIN, DFP_X_MAX, 0, 0); | ||
606 | input_set_abs_params(dev, ABS_Y, DFP_PEDAL_MIN, DFP_PEDAL_MAX, 0, 0); | ||
607 | input_set_abs_params(dev, ABS_RZ, DFP_PEDAL_MIN, DFP_PEDAL_MAX, 0, 0); | ||
608 | break; | ||
609 | default: | ||
610 | break; | ||
611 | } | ||
612 | |||
613 | /* Set the maximum range to start with */ | 596 | /* Set the maximum range to start with */ |
614 | entry->range = entry->max_range; | 597 | entry->range = entry->max_range; |
615 | if (entry->set_range != NULL) | 598 | if (entry->set_range != NULL) |