Commit 33936fa6 authored by Dmitry Torokhov's avatar Dmitry Torokhov

Input: aiptek - use array to list all buttons

When setting up input device use an array to list all the buttons
instead of setting every bit separately.
Signed-off-by: default avatarRene van Paassen <rene.vanpaassen@gmail.com>
Signed-off-by: default avatarDmitry Torokhov <dtor@mail.ru>
parent 37767b66
...@@ -329,6 +329,13 @@ struct aiptek { ...@@ -329,6 +329,13 @@ struct aiptek {
unsigned char *data; /* incoming packet data */ unsigned char *data; /* incoming packet data */
}; };
static const int buttonEvents[] = {
BTN_LEFT, BTN_RIGHT, BTN_MIDDLE,
BTN_TOOL_PEN, BTN_TOOL_RUBBER, BTN_TOOL_PENCIL, BTN_TOOL_AIRBRUSH,
BTN_TOOL_BRUSH, BTN_TOOL_MOUSE, BTN_TOOL_LENS, BTN_TOUCH,
BTN_STYLUS, BTN_STYLUS2,
};
/* /*
* Permit easy lookup of keyboard events to send, versus * Permit easy lookup of keyboard events to send, versus
* the bitmap which comes from the tablet. This hides the * the bitmap which comes from the tablet. This hides the
...@@ -1728,26 +1735,14 @@ aiptek_probe(struct usb_interface *intf, const struct usb_device_id *id) ...@@ -1728,26 +1735,14 @@ aiptek_probe(struct usb_interface *intf, const struct usb_device_id *id)
inputdev->relbit[0] |= inputdev->relbit[0] |=
(BIT(REL_X) | BIT(REL_Y) | BIT(REL_WHEEL) | BIT(REL_MISC)); (BIT(REL_X) | BIT(REL_Y) | BIT(REL_WHEEL) | BIT(REL_MISC));
inputdev->keybit[LONG(BTN_LEFT)] |=
(BIT(BTN_LEFT) | BIT(BTN_RIGHT) | BIT(BTN_MIDDLE));
inputdev->keybit[LONG(BTN_DIGI)] |=
(BIT(BTN_TOOL_PEN) |
BIT(BTN_TOOL_RUBBER) |
BIT(BTN_TOOL_PENCIL) |
BIT(BTN_TOOL_AIRBRUSH) |
BIT(BTN_TOOL_BRUSH) |
BIT(BTN_TOOL_MOUSE) |
BIT(BTN_TOOL_LENS) |
BIT(BTN_TOUCH) | BIT(BTN_STYLUS) | BIT(BTN_STYLUS2));
inputdev->mscbit[0] = BIT(MSC_SERIAL); inputdev->mscbit[0] = BIT(MSC_SERIAL);
/* Programming the tablet macro keys needs to be done with a for loop /* Set up key and button codes */
* as the keycodes are discontiguous. for (i = 0; i < ARRAY_SIZE(buttonEvents); ++i)
*/ __set_bit(buttonEvents[i], inputdev->keybit);
for (i = 0; i < ARRAY_SIZE(macroKeyEvents); ++i) for (i = 0; i < ARRAY_SIZE(macroKeyEvents); ++i)
set_bit(macroKeyEvents[i], inputdev->keybit); __set_bit(macroKeyEvents[i], inputdev->keybit);
/* /*
* Program the input device coordinate capacities. We do not yet * Program the input device coordinate capacities. We do not yet
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment