diff options
author | Hans de Goede <hdegoede@redhat.com> | 2014-09-08 14:44:05 -0700 |
---|---|---|
committer | Dmitry Torokhov <dmitry.torokhov@gmail.com> | 2014-09-08 14:58:12 -0700 |
commit | 01d4cd5c44ad471b75de4b0a235765881f6cde45 (patch) | |
tree | 9f6a9e97a7743d6265f849f3cbd6a7f01aa668ca /drivers/input/mouse/synaptics_usb.c | |
parent | 7611392fe8ff95ecae528b01a815ae3d72ca6b95 (diff) | |
download | talos-obmc-linux-01d4cd5c44ad471b75de4b0a235765881f6cde45.tar.gz talos-obmc-linux-01d4cd5c44ad471b75de4b0a235765881f6cde45.zip |
Input: add missing POINTER / DIRECT properties to a bunch of drivers
I've not done a full audit of all mouse drivers, I noticed these ones were
missing the POINTER property while working on the POINTING_STICK property.
Signed-off-by: Hans de Goede <hdegoede@redhat.com>
Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
Diffstat (limited to 'drivers/input/mouse/synaptics_usb.c')
-rw-r--r-- | drivers/input/mouse/synaptics_usb.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/drivers/input/mouse/synaptics_usb.c b/drivers/input/mouse/synaptics_usb.c index db3973d78207..6bcc0189c1c9 100644 --- a/drivers/input/mouse/synaptics_usb.c +++ b/drivers/input/mouse/synaptics_usb.c @@ -402,6 +402,11 @@ static int synusb_probe(struct usb_interface *intf, __set_bit(BTN_TOOL_TRIPLETAP, input_dev->keybit); } + if (synusb->flags & SYNUSB_TOUCHSCREEN) + __set_bit(INPUT_PROP_DIRECT, input_dev->propbit); + else + __set_bit(INPUT_PROP_POINTER, input_dev->propbit); + __set_bit(BTN_LEFT, input_dev->keybit); __set_bit(BTN_RIGHT, input_dev->keybit); __set_bit(BTN_MIDDLE, input_dev->keybit); |