svn commit: r317813 - head/sys/dev/atkbdc

Vladimir Kondratyev wulf at FreeBSD.org
Thu May 4 22:53:46 UTC 2017


Author: wulf
Date: Thu May  4 22:53:45 2017
New Revision: 317813
URL: https://svnweb.freebsd.org/changeset/base/317813

Log:
  Adjust Elantech palm width threshold to nearly match synaptics defaults
  
  Reviewed by:	gonzo
  Approved by:	gonzo (mentor)
  MFC after:	2 weeks
  Differential Revision:	https://reviews.freebsd.org/D10266

Modified:
  head/sys/dev/atkbdc/psm.c

Modified: head/sys/dev/atkbdc/psm.c
==============================================================================
--- head/sys/dev/atkbdc/psm.c	Thu May  4 22:51:22 2017	(r317812)
+++ head/sys/dev/atkbdc/psm.c	Thu May  4 22:53:45 2017	(r317813)
@@ -6218,6 +6218,9 @@ elantech_init_synaptics(struct psm_softc
 		/* Disable finger detection pressure threshold */
 		sc->syninfo.min_pressure = 1;
 
+		/* Adjust palm width to nearly match synaptics w=10 */
+		sc->syninfo.max_width = 7;
+
 		/* Elans often report double & triple taps as single event */
 		sc->syninfo.tap_min_queue = 1;
 


More information about the svn-src-all mailing list