Author: eadler Date: Wed Sep 4 18:42:05 2013 New Revision: 255210 URL: http://svnweb.freebsd.org/changeset/base/255210
Log: Revert r255152: It turns out that synaptics_support was turned off by default because its probing method is too intrusive not because it was unstable. Once this is fixed it should be enabled once again. Reported by: delphij, jkim Modified: head/sys/dev/atkbdc/psm.c Modified: head/sys/dev/atkbdc/psm.c ============================================================================== --- head/sys/dev/atkbdc/psm.c Wed Sep 4 18:20:24 2013 (r255209) +++ head/sys/dev/atkbdc/psm.c Wed Sep 4 18:42:05 2013 (r255210) @@ -375,10 +375,10 @@ static devclass_t psm_devclass; static int tap_enabled = -1; TUNABLE_INT("hw.psm.tap_enabled", &tap_enabled); -static int synaptics_support = 1; +static int synaptics_support = 0; TUNABLE_INT("hw.psm.synaptics_support", &synaptics_support); -static int trackpoint_support = 1; +static int trackpoint_support = 0; TUNABLE_INT("hw.psm.trackpoint_support", &trackpoint_support); static int verbose = PSM_DEBUG; _______________________________________________ svn-src-head@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-src-head To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"