svn commit: r331993 - stable/11/sys/dev/usb/input
Hans Petter Selasky
hselasky at FreeBSD.org
Wed Apr 4 08:37:24 UTC 2018
Author: hselasky
Date: Wed Apr 4 08:37:24 2018
New Revision: 331993
URL: https://svnweb.freebsd.org/changeset/base/331993
Log:
MFC r331642:
Add support for right and middle click with integrated button to WSP
USB trackpad driver.
Submitted by: James Wright <james.wright at jigsawdezign.com>
PR: 226961
Sponsored by: Mellanox Technologies
Modified:
stable/11/sys/dev/usb/input/wsp.c
Directory Properties:
stable/11/ (props changed)
Modified: stable/11/sys/dev/usb/input/wsp.c
==============================================================================
--- stable/11/sys/dev/usb/input/wsp.c Wed Apr 4 08:09:25 2018 (r331992)
+++ stable/11/sys/dev/usb/input/wsp.c Wed Apr 4 08:37:24 2018 (r331993)
@@ -927,7 +927,12 @@ wsp_intr_callback(struct usb_xfer *xfer, usb_error_t e
sc->sc_status.button = 0;
if (ibt != 0) {
- sc->sc_status.button |= MOUSE_BUTTON1DOWN;
+ if ((params->caps & HAS_INTEGRATED_BUTTON) && ntouch == 2)
+ sc->sc_status.button |= MOUSE_BUTTON3DOWN;
+ else if ((params->caps & HAS_INTEGRATED_BUTTON) && ntouch == 3)
+ sc->sc_status.button |= MOUSE_BUTTON2DOWN;
+ else
+ sc->sc_status.button |= MOUSE_BUTTON1DOWN;
sc->ibtn = 1;
}
sc->intr_count++;
More information about the svn-src-stable
mailing list