diff options
author | Benjamin Tissoires <benjamin.tissoires@redhat.com> | 2017-03-02 23:13:53 +0100 |
---|---|---|
committer | Dmitry Torokhov <dmitry.torokhov@gmail.com> | 2017-03-25 18:37:30 +0100 |
commit | e839ffab028981ac77f650faf8c84f16e1719738 (patch) | |
tree | d1a3b85b2669ae9d3d3b1d17787a095a2cbd5212 /drivers/input/mouse/psmouse.h | |
parent | Input: synaptics - split device info into a separate structure (diff) | |
download | linux-e839ffab028981ac77f650faf8c84f16e1719738.tar.xz linux-e839ffab028981ac77f650faf8c84f16e1719738.zip |
Input: synaptics - add support for Intertouch devices
Most of the Synaptics devices are connected through PS/2 and a different
bus (SMBus or HID over I2C). The secondary bus capability is indicated by
the InterTouch bit in extended capability 0x0C.
We only enable the InterTouch device to be created for the laptops
registered with the top software button property or those we know that are
functional. In the future, we might change the default to always rely on
the InterTouch bus. Currently, users can enable/disable the feature with
the psmouse parameter synaptics_intertouch.
Signed-off-by: Benjamin Tissoires <benjamin.tissoires@redhat.com>
Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
Diffstat (limited to 'drivers/input/mouse/psmouse.h')
-rw-r--r-- | drivers/input/mouse/psmouse.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/input/mouse/psmouse.h b/drivers/input/mouse/psmouse.h index 05110832109c..38855e425f01 100644 --- a/drivers/input/mouse/psmouse.h +++ b/drivers/input/mouse/psmouse.h @@ -66,6 +66,7 @@ enum psmouse_type { PSMOUSE_FOCALTECH, PSMOUSE_VMMOUSE, PSMOUSE_BYD, + PSMOUSE_SYNAPTICS_SMBUS, PSMOUSE_AUTO /* This one should always be last */ }; |