Input: use ABS_CNT rather than (ABS_MAX + 1)
Signed-off-by: Daniel Mack <daniel@caiaq.de> Signed-off-by: Dmitry Torokhov <dtor@mail.ru>
This commit is contained in:
committed by
Dmitry Torokhov
parent
a62f0d27b4
commit
81c2a3ba49
@@ -1155,7 +1155,7 @@ struct input_dev {
|
||||
|
||||
int sync;
|
||||
|
||||
int abs[ABS_MAX + 1];
|
||||
int abs[ABS_CNT];
|
||||
int rep[REP_MAX + 1];
|
||||
|
||||
unsigned long key[BITS_TO_LONGS(KEY_CNT)];
|
||||
@@ -1163,11 +1163,11 @@ struct input_dev {
|
||||
unsigned long snd[BITS_TO_LONGS(SND_CNT)];
|
||||
unsigned long sw[BITS_TO_LONGS(SW_CNT)];
|
||||
|
||||
int absmax[ABS_MAX + 1];
|
||||
int absmin[ABS_MAX + 1];
|
||||
int absfuzz[ABS_MAX + 1];
|
||||
int absflat[ABS_MAX + 1];
|
||||
int absres[ABS_MAX + 1];
|
||||
int absmax[ABS_CNT];
|
||||
int absmin[ABS_CNT];
|
||||
int absfuzz[ABS_CNT];
|
||||
int absflat[ABS_CNT];
|
||||
int absres[ABS_CNT];
|
||||
|
||||
int (*open)(struct input_dev *dev);
|
||||
void (*close)(struct input_dev *dev);
|
||||
|
Reference in New Issue
Block a user