aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/input/input.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/input/input.c')
-rw-r--r--drivers/input/input.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/input/input.c b/drivers/input/input.c
index ab6982056518..acb3c8095c65 100644
--- a/drivers/input/input.c
+++ b/drivers/input/input.c
@@ -171,7 +171,7 @@ static int input_handle_abs_event(struct input_dev *dev,
171 if (code == ABS_MT_SLOT) { 171 if (code == ABS_MT_SLOT) {
172 /* 172 /*
173 * "Stage" the event; we'll flush it later, when we 173 * "Stage" the event; we'll flush it later, when we
174 * get actiual touch data. 174 * get actual touch data.
175 */ 175 */
176 if (*pval >= 0 && *pval < dev->mtsize) 176 if (*pval >= 0 && *pval < dev->mtsize)
177 dev->slot = *pval; 177 dev->slot = *pval;
@@ -188,7 +188,7 @@ static int input_handle_abs_event(struct input_dev *dev,
188 pold = &mtslot->abs[code - ABS_MT_FIRST]; 188 pold = &mtslot->abs[code - ABS_MT_FIRST];
189 } else { 189 } else {
190 /* 190 /*
191 * Bypass filtering for multitouch events when 191 * Bypass filtering for multi-touch events when
192 * not employing slots. 192 * not employing slots.
193 */ 193 */
194 pold = NULL; 194 pold = NULL;
@@ -1601,7 +1601,7 @@ EXPORT_SYMBOL(input_free_device);
1601 * 1601 *
1602 * This function allocates all necessary memory for MT slot handling in the 1602 * This function allocates all necessary memory for MT slot handling in the
1603 * input device, and adds ABS_MT_SLOT to the device capabilities. All slots 1603 * input device, and adds ABS_MT_SLOT to the device capabilities. All slots
1604 * are initially marked as unused iby setting ABS_MT_TRACKING_ID to -1. 1604 * are initially marked as unused by setting ABS_MT_TRACKING_ID to -1.
1605 */ 1605 */
1606int input_mt_create_slots(struct input_dev *dev, unsigned int num_slots) 1606int input_mt_create_slots(struct input_dev *dev, unsigned int num_slots)
1607{ 1607{