diff options
author | Jason Gerecke <killertofu@gmail.com> | 2011-09-08 09:38:14 -0700 |
---|---|---|
committer | Dmitry Torokhov <dmitry.torokhov@gmail.com> | 2011-09-08 09:42:28 -0700 |
commit | 3512069eefd3c3424b12f21a68fd473c3fd57220 (patch) | |
tree | 4198d5839ca7007abe5f13a2c07d6cdcc41b68cc /drivers/hid | |
parent | 8c6756603976e9d21bba9913cd80c38ec529a1fb (diff) | |
download | linux-3.10-3512069eefd3c3424b12f21a68fd473c3fd57220.tar.gz linux-3.10-3512069eefd3c3424b12f21a68fd473c3fd57220.tar.bz2 linux-3.10-3512069eefd3c3424b12f21a68fd473c3fd57220.zip |
Input: wacom - add POINTER and DIRECT device properties
Adds INPUT_PROP_POINTER or INPUT_PROP_DIRECT as necessary to the
hardware supported by the Wacom driver. The DIRECT property is
assigned to devices with an embedded screen (i.e. touchscreens
and display tablets). The POINTER property is assigned to those
without embedded screens.
Signed-off-by: Jason Gerecke <killertofu@gmail.com>
Reviewed-by: Ping Cheng <pingc@wacom.com>
Signed-off-by: Dmitry Torokhov <dtor@mail.ru>
Diffstat (limited to 'drivers/hid')
-rw-r--r-- | drivers/hid/hid-wacom.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/hid/hid-wacom.c b/drivers/hid/hid-wacom.c index 06888323828..5b9267dd3d6 100644 --- a/drivers/hid/hid-wacom.c +++ b/drivers/hid/hid-wacom.c @@ -383,6 +383,8 @@ move_on: hidinput = list_entry(hdev->inputs.next, struct hid_input, list); input = hidinput->input; + __set_bit(INPUT_PROP_POINTER, input->propbit); + /* Basics */ input->evbit[0] |= BIT(EV_KEY) | BIT(EV_ABS) | BIT(EV_REL); |