CVS commit: src/sys/dev/pckbport

2021-06-30 Thread Brett Lymn
Module Name:src Committed By: blymn Date: Wed Jun 30 22:13:27 UTC 2021 Modified Files: src/sys/dev/pckbport: synapticsvar.h Log Message: Fix hardcoded size for total_patckets array in synaptics_softc, it needs to be SYN_MAX_FINGERS because the driver expects it to be.

CVS commit: src/sys/dev/pckbport

2021-05-30 Thread Taylor R Campbell
Module Name:src Committed By: riastradh Date: Sun May 30 13:20:01 UTC 2021 Modified Files: src/sys/dev/pckbport: synaptics.c Log Message: synaptics(4): New sysctl knob for debug output. Set hw.synaptics.debug=1 to re-enable it; the compile-time DIAGNOSTIC option was

CVS commit: src/sys/dev/pckbport

2020-10-01 Thread Nia Alarie
Module Name:src Committed By: nia Date: Thu Oct 1 15:08:11 UTC 2020 Modified Files: src/sys/dev/pckbport: synaptics.c Log Message: erect a signpost for weary travellers To generate a diff of this commit: cvs rdiff -u -r1.68 -r1.69 src/sys/dev/pckbport/synaptics.c

CVS commit: src/sys/dev/pckbport

2020-10-01 Thread Nia Alarie
Module Name:src Committed By: nia Date: Thu Oct 1 14:33:26 UTC 2020 Modified Files: src/sys/dev/pckbport: synaptics.c Log Message: comment was likely true in 2007 but no longer reflects the reality of hw To generate a diff of this commit: cvs rdiff -u -r1.67 -r1.68

CVS commit: src/sys/dev/pckbport

2020-05-14 Thread Nia Alarie
Module Name:src Committed By: nia Date: Thu May 14 18:06:58 UTC 2020 Modified Files: src/sys/dev/pckbport: synaptics.c Log Message: synaptics: Don't reset the device multiple times in succession Cherrypicked from a patch from an anonymous contributor. To generate a

CVS commit: src/sys/dev/pckbport

2020-04-28 Thread Jared D. McNeill
Module Name:src Committed By: jmcneill Date: Tue Apr 28 19:22:58 UTC 2020 Modified Files: src/sys/dev/pckbport: synaptics.c Log Message: pms_synaptics_enable: no need to send PMS_DEV_ENABLE here because pms_enable does this for us. Seems to resolve issues with my

CVS commit: src/sys/dev/pckbport

2020-04-27 Thread Jared D. McNeill
Module Name:src Committed By: jmcneill Date: Mon Apr 27 22:31:47 UTC 2020 Modified Files: src/sys/dev/pckbport: synaptics.c synapticsvar.h Log Message: Extended buttons are reported separate from touchpad buttons, so track button press / release state separate from touch

CVS commit: src/sys/dev/pckbport

2020-03-31 Thread Nia Alarie
Module Name:src Committed By: nia Date: Tue Mar 31 19:08:19 UTC 2020 Modified Files: src/sys/dev/pckbport: synaptics.c Log Message: synaptics: Maintain the left/right buttons when up/down are remapped Reported on current-users by Mandacarú Cascavel To generate a diff

CVS commit: src/sys/dev/pckbport

2020-03-27 Thread Nia Alarie
Module Name:src Committed By: nia Date: Fri Mar 27 11:10:07 UTC 2020 Modified Files: src/sys/dev/pckbport: synaptics.c Log Message: synaptics: Revert changes that broke gestures in cases where they worked. It seems I have to figure out another way to make scrolling work

CVS commit: src/sys/dev/pckbport

2020-03-16 Thread Nia Alarie
Module Name:src Committed By: nia Date: Mon Mar 16 11:13:19 UTC 2020 Modified Files: src/sys/dev/pckbport: synaptics.c Log Message: synaptics: Increase default scale_z for more precise scrolling To generate a diff of this commit: cvs rdiff -u -r1.61 -r1.62

CVS commit: src/sys/dev/pckbport

2020-03-15 Thread Nia Alarie
Module Name:src Committed By: nia Date: Sun Mar 15 22:44:32 UTC 2020 Modified Files: src/sys/dev/pckbport: synaptics.c Log Message: synaptics: Check for single-finger event jitter in all cases. I now have smooth two-finger scrolling. To generate a diff of this commit:

CVS commit: src/sys/dev/pckbport

2020-03-14 Thread Nia Alarie
Module Name:src Committed By: nia Date: Sat Mar 14 22:23:17 UTC 2020 Modified Files: src/sys/dev/pckbport: synaptics.c Log Message: synaptics: Detect multiple fingers outside the gesture period I suspect this code doesn't make any sense if we want two-finger scrolling

CVS commit: src/sys/dev/pckbport

2020-03-14 Thread Nia Alarie
Module Name:src Committed By: nia Date: Sat Mar 14 21:56:08 UTC 2020 Modified Files: src/sys/dev/pckbport: synaptics.c Log Message: synaptics: Automatically scroll when multiple fingers are detected This will mean we automatically get two-finger scrolling on multitouch

CVS commit: src/sys/dev/pckbport

2020-03-14 Thread Nia Alarie
Module Name:src Committed By: nia Date: Sat Mar 14 21:23:32 UTC 2020 Modified Files: src/sys/dev/pckbport: synaptics.c Log Message: synaptics: fix syntax To generate a diff of this commit: cvs rdiff -u -r1.57 -r1.58 src/sys/dev/pckbport/synaptics.c Please note that

CVS commit: src/sys/dev/pckbport

2020-03-14 Thread Nia Alarie
Module Name:src Committed By: nia Date: Sat Mar 14 21:18:50 UTC 2020 Modified Files: src/sys/dev/pckbport: synaptics.c Log Message: synaptics: Allow the max_speed sysctls to be set To generate a diff of this commit: cvs rdiff -u -r1.56 -r1.57

CVS commit: src/sys/dev/pckbport

2020-02-25 Thread Ryo ONODERA
Module Name:src Committed By: ryoon Date: Tue Feb 25 21:41:38 UTC 2020 Modified Files: src/sys/dev/pckbport: synaptics.c Log Message: Messages in pms_synaptics_input() should not start with "pms_input" Use "pms_synaptics_input" instead for another 2 messages. To

CVS commit: src/sys/dev/pckbport

2020-02-25 Thread Ryo ONODERA
Module Name:src Committed By: ryoon Date: Tue Feb 25 21:38:42 UTC 2020 Modified Files: src/sys/dev/pckbport: synaptics.c Log Message: Messages in pms_synaptics_input() should not start with "pms_input" Use "pms_synaptics_input" instead. To generate a diff of this

CVS commit: src/sys/dev/pckbport

2020-02-25 Thread Ryo ONODERA
Module Name:src Committed By: ryoon Date: Tue Feb 25 21:36:13 UTC 2020 Modified Files: src/sys/dev/pckbport: synaptics.c Log Message: Do not enter extended W mode conditional for non extended W mode device Even without extended W mode, sp_w can be 2. This causes "invalid

CVS commit: src/sys/dev/pckbport

2020-02-25 Thread Ryo ONODERA
Module Name:src Committed By: ryoon Date: Tue Feb 25 16:24:47 UTC 2020 Modified Files: src/sys/dev/pckbport: synaptics.c Log Message: Remove a trailing tab. To generate a diff of this commit: cvs rdiff -u -r1.50 -r1.51 src/sys/dev/pckbport/synaptics.c Please note that

CVS commit: src/sys/dev/pckbport

2020-02-10 Thread Ryo ONODERA
Module Name:src Committed By: ryoon Date: Mon Feb 10 16:12:59 UTC 2020 Modified Files: src/sys/dev/pckbport: alps.c Log Message: Introduce hw.alps.touchpad_movement_threshold to better button area clicks To generate a diff of this commit: cvs rdiff -u -r1.13 -r1.14

CVS commit: src/sys/dev/pckbport

2020-02-10 Thread Ryo ONODERA
Module Name:src Committed By: ryoon Date: Mon Feb 10 15:29:05 UTC 2020 Modified Files: src/sys/dev/pckbport: alps.c Log Message: Fix typo in sysctl node name To generate a diff of this commit: cvs rdiff -u -r1.12 -r1.13 src/sys/dev/pckbport/alps.c Please note that

CVS commit: src/sys/dev/pckbport

2019-04-21 Thread Brett Lymn
Module Name:src Committed By: blymn Date: Mon Apr 22 00:53:59 UTC 2019 Modified Files: src/sys/dev/pckbport: synaptics.c synapticsreg.h Log Message: Modify driver to use bits(3) to extract capabilities. Thanks to Anon Ymous for the fix. To generate a diff of this

CVS commit: src/sys/dev/pckbport

2019-04-20 Thread Brett Lymn
Module Name:src Committed By: blymn Date: Sun Apr 21 02:40:35 UTC 2019 Modified Files: src/sys/dev/pckbport: synaptics.c Log Message: Fix minor comment nit. To generate a diff of this commit: cvs rdiff -u -r1.46 -r1.47 src/sys/dev/pckbport/synaptics.c Please note that

CVS commit: src/sys/dev/pckbport

2019-03-15 Thread Ryo ONODERA
Module Name:src Committed By: ryoon Date: Sat Mar 16 03:27:15 UTC 2019 Modified Files: src/sys/dev/pckbport: alps.c Log Message: Support more ALPS V2 devices * The V2 devices found in Toshiba dynabook satellite B551/D and dynabook SS RX1/T8E. To generate a diff of

CVS commit: src/sys/dev/pckbport

2018-12-04 Thread Brett Lymn
Module Name:src Committed By: blymn Date: Tue Dec 4 10:10:15 UTC 2018 Modified Files: src/sys/dev/pckbport: synaptics.c Log Message: * Increase the default scaling of the two finger scroll to make it less sensitive * Fix range check for hw.synaptics.scale_z so it can

CVS commit: src/sys/dev/pckbport

2018-11-28 Thread Brett Lymn
Module Name:src Committed By: blymn Date: Wed Nov 28 09:14:03 UTC 2018 Modified Files: src/sys/dev/pckbport: synaptics.c Log Message: * Increase minimum finger width to prevent entering scroll mode erroneously * Attempt to clarify what the sysctl variables for finger

CVS commit: src/sys/dev/pckbport

2018-11-06 Thread Brett Lymn
Module Name:src Committed By: blymn Date: Tue Nov 6 09:13:17 UTC 2018 Modified Files: src/sys/dev/pckbport: synaptics.c synapticsvar.h Log Message: Add double finger scroll feature. If the detected width is between a defined range then report y movement as z-axis.

CVS commit: src/sys/dev/pckbport

2018-11-06 Thread Brett Lymn
Module Name:src Committed By: blymn Date: Tue Nov 6 08:55:02 UTC 2018 Modified Files: src/sys/dev/pckbport: synaptics.c Log Message: Fix clamping of deltas so it works for both positive and negative deltas. To generate a diff of this commit: cvs rdiff -u -r1.42 -r1.43

CVS commit: src/sys/dev/pckbport

2018-07-13 Thread Maya Rashish
Module Name:src Committed By: maya Date: Sat Jul 14 00:47:33 UTC 2018 Modified Files: src/sys/dev/pckbport: synaptics.c synapticsreg.h Log Message: Send the 'magic reverse engineered sequence' with a single sliced command, don't wait for individual ACKs. Fixes kern/53444.

CVS commit: src/sys/dev/pckbport

2018-07-13 Thread Maya Rashish
Module Name:src Committed By: maya Date: Fri Jul 13 19:44:08 UTC 2018 Modified Files: src/sys/dev/pckbport: pms.c Log Message: Add comment elaborating what a sliced command is. To generate a diff of this commit: cvs rdiff -u -r1.36 -r1.37 src/sys/dev/pckbport/pms.c

CVS commit: src/sys/dev/pckbport

2018-06-19 Thread Valeriy E. Ushakov
Module Name:src Committed By: uwe Date: Tue Jun 19 23:25:59 UTC 2018 Modified Files: src/sys/dev/pckbport: alps.c Log Message: Make the error message from pms_alps_probe_init() an error again now that we don't misidentify almost anything as an ALPS device. Reset if E6

CVS commit: src/sys/dev/pckbport

2018-06-19 Thread Valeriy E. Ushakov
Module Name:src Committed By: uwe Date: Tue Jun 19 23:03:28 UTC 2018 Modified Files: src/sys/dev/pckbport: alps.c Log Message: Don't pass response buffer to the reset command since we are not interested in it (pckbport_poll_cmd() is smart enough). To generate a diff of

CVS commit: src/sys/dev/pckbport

2018-06-19 Thread Valeriy E. Ushakov
Module Name:src Committed By: uwe Date: Tue Jun 19 22:53:17 UTC 2018 Modified Files: src/sys/dev/pckbport: alps.c Log Message: If the first byte of E7 signature is not 0x73, it's not an ALPS device, so don't complain we failed to initialize it. Still need a reset, b/c

CVS commit: src/sys/dev/pckbport

2018-06-19 Thread Valeriy E. Ushakov
Module Name:src Committed By: uwe Date: Tue Jun 19 21:47:28 UTC 2018 Modified Files: src/sys/dev/pckbport: alps.c Log Message: When E6 signature is checked, ignore pressed buttons. To generate a diff of this commit: cvs rdiff -u -r1.6 -r1.7 src/sys/dev/pckbport/alps.c

CVS commit: src/sys/dev/pckbport

2018-06-19 Thread Valeriy E. Ushakov
Module Name:src Committed By: uwe Date: Tue Jun 19 21:21:04 UTC 2018 Modified Files: src/sys/dev/pckbport: alps.c Log Message: Use PMS_SEND_DEV_STATUS for E9 instead of PMS_GET_SCALE (also defined as E9). This is more readable and is congruent with other drivers. Same

CVS commit: src/sys/dev/pckbport

2018-06-03 Thread Christos Zoulas
Module Name:src Committed By: christos Date: Sun Jun 3 15:10:12 UTC 2018 Modified Files: src/sys/dev/pckbport: synaptics.c Log Message: restore \n printing. To generate a diff of this commit: cvs rdiff -u -r1.40 -r1.41 src/sys/dev/pckbport/synaptics.c Please note that

CVS commit: src/sys/dev/pckbport

2018-06-03 Thread Jonathan A. Kollasch
Module Name:src Committed By: jakllsch Date: Sun Jun 3 15:02:56 UTC 2018 Modified Files: src/sys/dev/pckbport: alps.c Log Message: Move two probe-time aprint_errors to debug and verbose level instead. These two are regularly happening within qemu, and would muddle up

CVS commit: src/sys/dev/pckbport

2018-06-03 Thread Christos Zoulas
Module Name:src Committed By: christos Date: Sun Jun 3 14:41:05 UTC 2018 Modified Files: src/sys/dev/pckbport: synaptics.c Log Message: use a more data-driven :-) approach to avoid cut-n-pasted code. To generate a diff of this commit: cvs rdiff -u -r1.39 -r1.40

CVS commit: src/sys/dev/pckbport

2018-06-03 Thread Ryo ONODERA
Module Name:src Committed By: ryoon Date: Sun Jun 3 07:24:18 UTC 2018 Modified Files: src/sys/dev/pckbport: synaptics.c Log Message: Enable Synaptics multifinger capability (Extended W mode) Magic parameters are taken from

CVS commit: src/sys/dev/pckbport

2018-05-30 Thread Ryo ONODERA
Module Name:src Committed By: ryoon Date: Wed May 30 13:20:39 UTC 2018 Modified Files: src/sys/dev/pckbport: synaptics.c Log Message: Remove double and trailing whitespaces To generate a diff of this commit: cvs rdiff -u -r1.37 -r1.38 src/sys/dev/pckbport/synaptics.c

CVS commit: src/sys/dev/pckbport

2018-05-29 Thread Ryo ONODERA
Module Name:src Committed By: ryoon Date: Tue May 29 11:38:24 UTC 2018 Modified Files: src/sys/dev/pckbport: synaptics.c Log Message: Remove trailing tab To generate a diff of this commit: cvs rdiff -u -r1.36 -r1.37 src/sys/dev/pckbport/synaptics.c Please note that

CVS commit: src/sys/dev/pckbport

2017-12-05 Thread Jared D. McNeill
Module Name:src Committed By: jmcneill Date: Tue Dec 5 18:04:21 UTC 2017 Modified Files: src/sys/dev/pckbport: synaptics.c Log Message: Add hw.synaptics.movement_enable sysctl. Default value is 1, but if set to 0 disables movement events from the touchpad. While here,

CVS commit: src/sys/dev/pckbport

2017-11-07 Thread Ryo ONODERA
Module Name:src Committed By: ryoon Date: Tue Nov 7 12:39:07 UTC 2017 Modified Files: src/sys/dev/pckbport: synaptics.c Log Message: Return res in non-synaptics case like before. Fix ALPS case To generate a diff of this commit: cvs rdiff -u -r1.34 -r1.35

CVS commit: src/sys/dev/pckbport

2017-11-06 Thread Brett Lymn
Module Name:src Committed By: blymn Date: Mon Nov 6 21:07:17 UTC 2017 Modified Files: src/sys/dev/pckbport: synaptics.c synapticsreg.h synapticsvar.h Log Message: Add two finger support and middle/right button emulation. To generate a diff of this commit: cvs rdiff -u

CVS commit: src/sys/dev/pckbport

2017-08-16 Thread Nathanial Sloss
Module Name:src Committed By: nat Date: Wed Aug 16 21:18:58 UTC 2017 Modified Files: src/sys/dev/pckbport: alps.c Log Message: Remove extra newline. To generate a diff of this commit: cvs rdiff -u -r1.3 -r1.4 src/sys/dev/pckbport/alps.c Please note that diffs are not

CVS commit: src/sys/dev/pckbport

2017-08-16 Thread Nathanial Sloss
Module Name:src Committed By: nat Date: Wed Aug 16 21:09:48 UTC 2017 Modified Files: src/sys/dev/pckbport: alps.c Log Message: If ALPS probe fails, send a PMS_RESET. Restores functionality on a wrong version ALPS touchpad. Addresses PR kern/52489. This patch was

CVS commit: src/sys/dev/pckbport

2017-08-15 Thread Ryo ONODERA
Module Name:src Committed By: ryoon Date: Tue Aug 15 22:23:09 UTC 2017 Modified Files: src/sys/dev/pckbport: alps.c Log Message: Do not print ALPS related message when generic PS/2 case To generate a diff of this commit: cvs rdiff -u -r1.1 -r1.2

CVS commit: src/sys/dev/pckbport

2017-08-13 Thread Christos Zoulas
Module Name:src Committed By: christos Date: Sun Aug 13 08:49:27 UTC 2017 Modified Files: src/sys/dev/pckbport: files.pckbport pms.c pmsvar.h Added Files: src/sys/dev/pckbport: alps.c alpsreg.h alpsvar.h Log Message: PR/52483: Ryo ONODERA: Add support for ALPS

CVS commit: src/sys/dev/pckbport

2015-07-16 Thread Patrick Welche
Module Name:src Committed By: prlw1 Date: Thu Jul 16 15:01:04 UTC 2015 Modified Files: src/sys/dev/pckbport: pckbd.c Log Message: Disambiguate debug message. To generate a diff of this commit: cvs rdiff -u -r1.31 -r1.32 src/sys/dev/pckbport/pckbd.c Please note that

CVS commit: src/sys/dev/pckbport

2015-03-04 Thread Christos Zoulas
Module Name:src Committed By: christos Date: Wed Mar 4 22:58:36 UTC 2015 Modified Files: src/sys/dev/pckbport: synaptics.c Log Message: Fix clickpad button detection (From Rhialto) To generate a diff of this commit: cvs rdiff -u -r1.32 -r1.33

CVS commit: src/sys/dev/pckbport

2014-06-11 Thread Taylor R Campbell
Module Name:src Committed By: riastradh Date: Wed Jun 11 20:09:17 UTC 2014 Modified Files: src/sys/dev/pckbport: wskbdmap_mfii.c Log Message: Nuke trailing whitespace. To generate a diff of this commit: cvs rdiff -u -r1.23 -r1.24 src/sys/dev/pckbport/wskbdmap_mfii.c

CVS commit: src/sys/dev/pckbport

2014-05-22 Thread Christos Zoulas
Module Name:src Committed By: christos Date: Fri May 23 01:11:29 UTC 2014 Modified Files: src/sys/dev/pckbport: synaptics.c synapticsreg.h synapticsvar.h Log Message: PR/48831: J�rg Grundmann: Synaptics Touch pad (ClickPad) and Klick-by-tap-gestures do not work To

CVS commit: src/sys/dev/pckbport

2014-01-11 Thread Jonathan A. Kollasch
Module Name:src Committed By: jakllsch Date: Sat Jan 11 20:29:03 UTC 2014 Modified Files: src/sys/dev/pckbport: pckbport.c Log Message: KASSERT that cmd is non-NULL in more places, and in a place that previously did not use KASSERT to do the same thing. To generate a

CVS commit: src/sys/dev/pckbport

2013-09-15 Thread Martin Husemann
Module Name:src Committed By: martin Date: Sun Sep 15 09:24:05 UTC 2013 Modified Files: src/sys/dev/pckbport: pckbd.c Log Message: Cosemetically fix the pckbd_attach() return value, so gcc can see the value is used (no functional change) To generate a diff of this

CVS commit: src/sys/dev/pckbport

2013-03-05 Thread Christos Zoulas
Module Name:src Committed By: christos Date: Wed Mar 6 03:26:17 UTC 2013 Modified Files: src/sys/dev/pckbport: pckbdreg.h pckbport.c Log Message: Deal with Foxconn NanoPC nT-i1250 returning BAT_FAIL and don't infinite loop From OpenBSD. To generate a diff of this

CVS commit: src/sys/dev/pckbport

2013-03-05 Thread Christos Zoulas
Module Name:src Committed By: christos Date: Wed Mar 6 04:22:03 UTC 2013 Modified Files: src/sys/dev/pckbport: pckbport.c Log Message: fix debugging printf To generate a diff of this commit: cvs rdiff -u -r1.15 -r1.16 src/sys/dev/pckbport/pckbport.c Please note that

CVS commit: src/sys/dev/pckbport

2012-10-13 Thread Julian Coleman
Module Name:src Committed By: jdc Date: Sat Oct 13 17:51:51 UTC 2012 Modified Files: src/sys/dev/pckbport: wskbdmap_mfii.c Log Message: Add the extra keys found on the Tadpole SPARCle to the keysym list. To generate a diff of this commit: cvs rdiff -u -r1.22 -r1.23

CVS commit: src/sys/dev/pckbport

2012-06-03 Thread David Laight
Module Name:src Committed By: dsl Date: Sun Jun 3 13:52:46 UTC 2012 Modified Files: src/sys/dev/pckbport: synaptics.c Log Message: Remove a couple of (void *) casts added in the previous commin. They aren't needed here (script error). To generate a diff of this commit:

CVS commit: src/sys/dev/pckbport

2012-01-07 Thread Jared D. McNeill
Module Name:src Committed By: jmcneill Date: Sat Jan 7 10:27:59 UTC 2012 Modified Files: src/sys/dev/pckbport: elantech.c elantechvar.h Log Message: add support for elantech (v2) touchpads that report input pressure To generate a diff of this commit: cvs rdiff -u -r1.4

CVS commit: src/sys/dev/pckbport

2011-09-10 Thread Jonathan A. Kollasch
Module Name:src Committed By: jakllsch Date: Sat Sep 10 18:38:20 UTC 2011 Modified Files: src/sys/dev/pckbport: synaptics.c synapticsreg.h synapticsvar.h Log Message: Correct and improve some comments. Collect unused variables. Add a define. To generate a diff of this

CVS commit: src/sys/dev/pckbport

2011-09-09 Thread Jonathan A. Kollasch
Module Name:src Committed By: jakllsch Date: Fri Sep 9 14:00:01 UTC 2011 Modified Files: src/sys/dev/pckbport: pckbport.c pckbportvar.h Log Message: const-ify input command buffer argument to pckbport_poll_cmd and pckbport_enqueue_cmd. To generate a diff of this

CVS commit: src/sys/dev/pckbport

2011-09-09 Thread Jonathan A. Kollasch
Module Name:src Committed By: jakllsch Date: Fri Sep 9 14:29:47 UTC 2011 Modified Files: src/sys/dev/pckbport: elantech.c pms.c pmsvar.h synaptics.c Log Message: Replace pms_synaptics_send_command() and identical pms_elantech_send_command() with pms_sliced_command().

CVS commit: src/sys/dev/pckbport

2011-09-08 Thread Jonathan A. Kollasch
Module Name:src Committed By: jakllsch Date: Thu Sep 8 15:26:26 UTC 2011 Modified Files: src/sys/dev/pckbport: pms.c Log Message: Make whitespace more consistent. To generate a diff of this commit: cvs rdiff -u -r1.32 -r1.33 src/sys/dev/pckbport/pms.c Please note that

CVS commit: src/sys/dev/pckbport

2011-09-08 Thread Jonathan A. Kollasch
Module Name:src Committed By: jakllsch Date: Thu Sep 8 15:27:51 UTC 2011 Modified Files: src/sys/dev/pckbport: pmsvar.h Log Message: Cosmetic changes. To generate a diff of this commit: cvs rdiff -u -r1.9 -r1.10 src/sys/dev/pckbport/pmsvar.h Please note that diffs are

CVS commit: src/sys/dev/pckbport

2011-09-08 Thread Jonathan A. Kollasch
Module Name:src Committed By: jakllsch Date: Thu Sep 8 16:34:09 UTC 2011 Modified Files: src/sys/dev/pckbport: pms.c Log Message: Sprinkle static. To generate a diff of this commit: cvs rdiff -u -r1.33 -r1.34 src/sys/dev/pckbport/pms.c Please note that diffs are not

CVS commit: src/sys/dev/pckbport

2011-09-07 Thread Jonathan A. Kollasch
Module Name:src Committed By: jakllsch Date: Wed Sep 7 19:05:13 UTC 2011 Modified Files: src/sys/dev/pckbport: files.pckbport pms.c pmsvar.h Log Message: options PMS_DISABLE_POWERHOOK has been obsolete for a while now, remove what little still remains of it. To

CVS commit: src/sys/dev/pckbport

2011-07-22 Thread Christos Zoulas
Module Name:src Committed By: christos Date: Fri Jul 22 19:20:29 UTC 2011 Modified Files: src/sys/dev/pckbport: wskbdmap_mfii.c Log Message: fixes from OpenBSD To generate a diff of this commit: cvs rdiff -u -r1.20 -r1.21 src/sys/dev/pckbport/wskbdmap_mfii.c Please

CVS commit: src/sys/dev/pckbport

2011-07-22 Thread Christos Zoulas
Module Name:src Committed By: christos Date: Fri Jul 22 23:22:38 UTC 2011 Modified Files: src/sys/dev/pckbport: wskbdmap_mfii.c Log Message: fixes from gilbert dot fernandes at orange dot fr To generate a diff of this commit: cvs rdiff -u -r1.21 -r1.22

CVS commit: src/sys/dev/pckbport

2011-05-24 Thread Joerg Sonnenberger
Module Name:src Committed By: joerg Date: Tue May 24 16:42:53 UTC 2011 Modified Files: src/sys/dev/pckbport: pms.c Log Message: Use proper format string To generate a diff of this commit: cvs rdiff -u -r1.30 -r1.31 src/sys/dev/pckbport/pms.c Please note that diffs are

CVS commit: src/sys/dev/pckbport

2011-02-07 Thread Christoph Egger
Module Name:src Committed By: cegger Date: Tue Feb 8 07:32:47 UTC 2011 Modified Files: src/sys/dev/pckbport: pmsreg.h Log Message: add PS/2 registers from synaptics spec: PMS_RESET_WRAP_MODE, PMS_SET_WRAP_MODE, PMS_ACK, PMS_ERROR and PMS_RESEND while here use #definetab

CVS commit: src/sys/dev/pckbport

2011-01-29 Thread Christoph Egger
Module Name:src Committed By: cegger Date: Sat Jan 29 20:37:25 UTC 2011 Modified Files: src/sys/dev/pckbport: synaptics.c Log Message: use aprint_debug_dev and get rid of SYNAPTICSDEBUG To generate a diff of this commit: cvs rdiff -u -r1.25 -r1.26

CVS commit: src/sys/dev/pckbport

2010-11-14 Thread Masao Uebayashi
Module Name:src Committed By: uebayasi Date: Mon Nov 15 05:58:18 UTC 2010 Modified Files: src/sys/dev/pckbport: synaptics.c Log Message: wakeup needs sys/proc.h. To generate a diff of this commit: cvs rdiff -u -r1.24 -r1.25 src/sys/dev/pckbport/synaptics.c Please note

CVS commit: src/sys/dev/pckbport

2010-03-21 Thread Iain Hibbert
Module Name:src Committed By: plunky Date: Sun Mar 21 19:57:05 UTC 2010 Modified Files: src/sys/dev/pckbport: synaptics.c Log Message: Extended capability probes can confuse the passthrough device, reset the touchpad on enable to cure that. To generate a diff of this

CVS commit: src/sys/dev/pckbport

2010-03-21 Thread Iain Hibbert
Module Name:src Committed By: plunky Date: Sun Mar 21 20:04:43 UTC 2010 Modified Files: src/sys/dev/pckbport: synaptics.c Log Message: send the SET_SCALE11 command before the 'sliced' command as per the Linux driver (and elantech(4)), via PR kern/42853 To generate a

CVS commit: src/sys/dev/pckbport

2010-01-08 Thread David Young
Module Name:src Committed By: dyoung Date: Fri Jan 8 20:00:33 UTC 2010 Modified Files: src/sys/dev/pckbport: pckbd.c pms.c Log Message: Expand PMF_FN_* macros. To generate a diff of this commit: cvs rdiff -u -r1.27 -r1.28 src/sys/dev/pckbport/pckbd.c cvs rdiff -u

CVS commit: src/sys/dev/pckbport

2009-07-16 Thread Jonathan A. Kollasch
Module Name:src Committed By: jakllsch Date: Thu Jul 16 20:44:54 UTC 2009 Modified Files: src/sys/dev/pckbport: pckbd.c Log Message: Ignore scancodes E0 2A, E0 AA, E0 36, E0 B6 when decoding. For the 10 keys on the editing keypad, these prefix/postfix scancodes indicate

CVS commit: src/sys/dev/pckbport

2009-06-13 Thread Tonnerre Lombard
Module Name:src Committed By: tonnerre Date: Sat Jun 13 20:21:56 UTC 2009 Modified Files: src/sys/dev/pckbport: wskbdmap_mfii.c Log Message: Add support for Swiss german kezboard to wskbd. Contributed by Marc Balmer. To generate a diff of this commit: cvs rdiff -u