diff options
Diffstat (limited to 'drivers/input/mousedev.c')
-rw-r--r-- | drivers/input/mousedev.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/input/mousedev.c b/drivers/input/mousedev.c index 335eb870d169..bbbe5e81adc1 100644 --- a/drivers/input/mousedev.c +++ b/drivers/input/mousedev.c | |||
@@ -1032,7 +1032,7 @@ static const struct input_device_id mousedev_ids[] = { | |||
1032 | .flags = INPUT_DEVICE_ID_MATCH_EVBIT | | 1032 | .flags = INPUT_DEVICE_ID_MATCH_EVBIT | |
1033 | INPUT_DEVICE_ID_MATCH_KEYBIT | | 1033 | INPUT_DEVICE_ID_MATCH_KEYBIT | |
1034 | INPUT_DEVICE_ID_MATCH_ABSBIT, | 1034 | INPUT_DEVICE_ID_MATCH_ABSBIT, |
1035 | .evbit = { BIT(EV_KEY) | BIT(EV_ABS) | BIT(EV_SYN) }, | 1035 | .evbit = { BIT_MASK(EV_KEY) | BIT_MASK(EV_ABS) }, |
1036 | .keybit = { [BIT_WORD(BTN_LEFT)] = BIT_MASK(BTN_LEFT) }, | 1036 | .keybit = { [BIT_WORD(BTN_LEFT)] = BIT_MASK(BTN_LEFT) }, |
1037 | .absbit = { BIT_MASK(ABS_X) | BIT_MASK(ABS_Y) }, | 1037 | .absbit = { BIT_MASK(ABS_X) | BIT_MASK(ABS_Y) }, |
1038 | }, /* Mouse-like device with absolute X and Y but ordinary | 1038 | }, /* Mouse-like device with absolute X and Y but ordinary |