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

Vladimir Kondratyev wulf at FreeBSD.org
Sun Jun 2 22:27:27 UTC 2019


Author: wulf
Date: Sun Jun  2 22:27:26 2019
New Revision: 348520
URL: https://svnweb.freebsd.org/changeset/base/348520

Log:
  psm(4): Add Elantech touchpad IC type 15 found on Thinkpad L480 laptops
  
  PR:		238291
  Submitted by:	Andrey Kosachenko <andrey.kosachenko at gmail.com>
  MFC after:	2 weeks

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

Modified: head/sys/dev/atkbdc/psm.c
==============================================================================
--- head/sys/dev/atkbdc/psm.c	Sun Jun  2 20:52:21 2019	(r348519)
+++ head/sys/dev/atkbdc/psm.c	Sun Jun  2 22:27:26 2019	(r348520)
@@ -7114,7 +7114,7 @@ enable_elantech(struct psm_softc *sc, enum probearg ar
 {
 	static const int ic2hw[] =
 	/*IC: 0  1  2  3  4  5  6  7  8  9  a  b  c  d  e  f */
-	    { 0, 0, 2, 0, 2, 3, 4, 4, 4, 4, 4, 4, 4, 4, 4, 0 };
+	    { 0, 0, 2, 0, 2, 3, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4 };
 	static const int fw_sizes[][3] = {
 		/* FW.vers  MaxX  MaxY */
 		{ 0x020030, 1152,  768 },


More information about the svn-src-all mailing list