Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 2 Jun 2020 00:53:40 +0000 (UTC)
From:      Vladimir Kondratyev <wulf@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r361715 - head/sys/dev/atkbdc
Message-ID:  <202006020053.0520reiM015297@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: wulf
Date: Tue Jun  2 00:53:39 2020
New Revision: 361715
URL: https://svnweb.freebsd.org/changeset/base/361715

Log:
  [psm] Do not disable trackpoint when hw.psm.elantech.touchpad_off is enabled
  
  PR:		246117
  Reported by:	Alexander Sieg <ports@xanderio.de>
  MFC after:	1 week

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

Modified: head/sys/dev/atkbdc/psm.c
==============================================================================
--- head/sys/dev/atkbdc/psm.c	Tue Jun  2 00:49:13 2020	(r361714)
+++ head/sys/dev/atkbdc/psm.c	Tue Jun  2 00:53:39 2020	(r361715)
@@ -4441,7 +4441,7 @@ proc_elantech(struct psm_softc *sc, packetbuf_t *pb, m
 	*x = *y = *z = 0;
 	ms->button = ms->obutton;
 
-	if (sc->syninfo.touchpad_off)
+	if (sc->syninfo.touchpad_off && pkt != ELANTECH_PKT_TRACKPOINT)
 		return (0);
 
 	/* Common legend



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202006020053.0520reiM015297>