diff options
author | Henrik Rydberg <rydberg@euromail.se> | 2010-09-05 15:25:11 -0400 |
---|---|---|
committer | Dmitry Torokhov <dmitry.torokhov@gmail.com> | 2010-09-05 15:57:58 -0400 |
commit | fed87e655a2c20468d628b37424af58287803afe (patch) | |
tree | 04e683df294ce2f1eff04196f9454539f236f986 /drivers/input/tablet/wacom_wac.h | |
parent | 92944c1c943647c7eb39c081feeecdd169f68ee4 (diff) |
Input: wacom - add fuzz parameters to features
The signal-to-noise ratio varies between devices, but currently all
devices are treated the same way. Add fuzz parameters to the feature
struct, allowing for tailored treatment of devices.
Signed-off-by: Henrik Rydberg <rydberg@euromail.se>
Acked-by: Ping Cheng <pingc@wacom.com>
Signed-off-by: Dmitry Torokhov <dtor@mail.ru>
Diffstat (limited to 'drivers/input/tablet/wacom_wac.h')
-rw-r--r-- | drivers/input/tablet/wacom_wac.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/drivers/input/tablet/wacom_wac.h b/drivers/input/tablet/wacom_wac.h index 99e1a54cd305..d769e9aa6f10 100644 --- a/drivers/input/tablet/wacom_wac.h +++ b/drivers/input/tablet/wacom_wac.h | |||
@@ -73,6 +73,10 @@ struct wacom_features { | |||
73 | int y_phy; | 73 | int y_phy; |
74 | unsigned char unit; | 74 | unsigned char unit; |
75 | unsigned char unitExpo; | 75 | unsigned char unitExpo; |
76 | int x_fuzz; | ||
77 | int y_fuzz; | ||
78 | int pressure_fuzz; | ||
79 | int distance_fuzz; | ||
76 | }; | 80 | }; |
77 | 81 | ||
78 | struct wacom_shared { | 82 | struct wacom_shared { |