diff options
Diffstat (limited to 'drivers/input')
-rw-r--r-- | drivers/input/input-mt.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/input/input-mt.c b/drivers/input/input-mt.c index c48c81f0308d..9150ee78e00a 100644 --- a/drivers/input/input-mt.c +++ b/drivers/input/input-mt.c | |||
@@ -117,6 +117,7 @@ void input_mt_report_finger_count(struct input_dev *dev, int count) | |||
117 | input_event(dev, EV_KEY, BTN_TOOL_DOUBLETAP, count == 2); | 117 | input_event(dev, EV_KEY, BTN_TOOL_DOUBLETAP, count == 2); |
118 | input_event(dev, EV_KEY, BTN_TOOL_TRIPLETAP, count == 3); | 118 | input_event(dev, EV_KEY, BTN_TOOL_TRIPLETAP, count == 3); |
119 | input_event(dev, EV_KEY, BTN_TOOL_QUADTAP, count == 4); | 119 | input_event(dev, EV_KEY, BTN_TOOL_QUADTAP, count == 4); |
120 | input_event(dev, EV_KEY, BTN_TOOL_QUINTTAP, count == 5); | ||
120 | } | 121 | } |
121 | EXPORT_SYMBOL(input_mt_report_finger_count); | 122 | EXPORT_SYMBOL(input_mt_report_finger_count); |
122 | 123 | ||