diff options
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/hid/hid-multitouch.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/hid/hid-multitouch.c b/drivers/hid/hid-multitouch.c index 3eb02b94fc87..c97011cdf852 100644 --- a/drivers/hid/hid-multitouch.c +++ b/drivers/hid/hid-multitouch.c | |||
@@ -421,11 +421,11 @@ static int mt_input_mapping(struct hid_device *hdev, struct hid_input *hi, | |||
421 | * contact max are global to the report */ | 421 | * contact max are global to the report */ |
422 | td->last_field_index = field->index; | 422 | td->last_field_index = field->index; |
423 | return -1; | 423 | return -1; |
424 | } | ||
425 | case HID_DG_TOUCH: | 424 | case HID_DG_TOUCH: |
426 | /* Legacy devices use TIPSWITCH and not TOUCH. | 425 | /* Legacy devices use TIPSWITCH and not TOUCH. |
427 | * Let's just ignore this field. */ | 426 | * Let's just ignore this field. */ |
428 | return -1; | 427 | return -1; |
428 | } | ||
429 | /* let hid-input decide for the others */ | 429 | /* let hid-input decide for the others */ |
430 | return 0; | 430 | return 0; |
431 | 431 | ||