diff options
author | Rafi Rubin <rafi@seas.upenn.edu> | 2010-05-04 14:20:16 -0400 |
---|---|---|
committer | Jiri Kosina <jkosina@suse.cz> | 2010-05-11 04:45:22 -0400 |
commit | ab3f4980ec62b907e697ff0934a8e1d076a6d46d (patch) | |
tree | d04536921e71391a76e576421c05b201c5238f67 /drivers/hid | |
parent | eab32f5f65574c7484ed883c2245758f5a98878c (diff) |
HID: ntrig: add filtering module parameters
Signed-off-by: Rafi Rubin <rafi@seas.upenn.edu>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
Diffstat (limited to 'drivers/hid')
-rw-r--r-- | drivers/hid/hid-ntrig.c | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/drivers/hid/hid-ntrig.c b/drivers/hid/hid-ntrig.c index 2c08365f3720..b6b0caeeac58 100644 --- a/drivers/hid/hid-ntrig.c +++ b/drivers/hid/hid-ntrig.c | |||
@@ -25,11 +25,32 @@ | |||
25 | #define NTRIG_DUPLICATE_USAGES 0x001 | 25 | #define NTRIG_DUPLICATE_USAGES 0x001 |
26 | 26 | ||
27 | static unsigned int min_width; | 27 | static unsigned int min_width; |
28 | module_param(min_width, uint, 0644); | ||
29 | MODULE_PARM_DESC(min_width, "Minimum touch contact width to accept."); | ||
30 | |||
28 | static unsigned int min_height; | 31 | static unsigned int min_height; |
32 | module_param(min_height, uint, 0644); | ||
33 | MODULE_PARM_DESC(min_height, "Minimum touch contact height to accept."); | ||
34 | |||
29 | static unsigned int activate_slack = 1; | 35 | static unsigned int activate_slack = 1; |
36 | module_param(activate_slack, uint, 0644); | ||
37 | MODULE_PARM_DESC(activate_slack, "Number of touch frames to ignore at " | ||
38 | "the start of touch input."); | ||
39 | |||
30 | static unsigned int deactivate_slack = 4; | 40 | static unsigned int deactivate_slack = 4; |
41 | module_param(deactivate_slack, uint, 0644); | ||
42 | MODULE_PARM_DESC(deactivate_slack, "Number of empty frames to ignore before " | ||
43 | "deactivating touch."); | ||
44 | |||
31 | static unsigned int activation_width = 64; | 45 | static unsigned int activation_width = 64; |
46 | module_param(activation_width, uint, 0644); | ||
47 | MODULE_PARM_DESC(activation_width, "Width threshold to immediately start " | ||
48 | "processing touch events."); | ||
49 | |||
32 | static unsigned int activation_height = 32; | 50 | static unsigned int activation_height = 32; |
51 | module_param(activation_height, uint, 0644); | ||
52 | MODULE_PARM_DESC(activation_height, "Height threshold to immediately start " | ||
53 | "processing touch events."); | ||
33 | 54 | ||
34 | struct ntrig_data { | 55 | struct ntrig_data { |
35 | /* Incoming raw values for a single contact */ | 56 | /* Incoming raw values for a single contact */ |