summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2012-05-20src/Makefile.am: set AM_CFLAGS correctly.HEADmasterMatthieu Herrb1-0/+1
2011-09-27This driver is unmaintained, warn users.Peter Hutterer1-0/+8
This driver will not see any further fixes unless users write them and test them. Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
2011-07-19Test device in PreInit, fail if it cannot be opened.Peter Hutterer1-0/+8
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
2011-07-19Use xf86SetStrOption for Option DevicePeter Hutterer1-1/+1
Let the device be printed in the logs Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
2011-07-19Don't free anything in PreInit, let UnInit take care of it.Peter Hutterer1-6/+1
The server calls UnInit, avoid double free's by letting the server free everything. Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
2011-07-18xf86-input-hyperpen: Return proper default for unknown values in ↵Terry Lambert1-2/+1
pInfo->device_control. Signed-off-by: Terry Lambert <tlambert@chromium.org> Reviewed-by: Stephane Marchesin <marcheu@chromium.org> Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
2011-07-05hyperpen 1.4.1xf86-input-hyperpen-1.4.1Peter Hutterer1-1/+1
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
2011-07-05Remove some if 0 code now obsoletePeter Hutterer1-27/+0
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
2011-07-05Fill in missing type_name.Peter Hutterer1-0/+1
This causes server crashes during activate if when the server attempts to allocate an atom based on the type name string. Regression introduced in xf86-input-hyperpen-1.3.0-24-g0a03c1f Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
2011-06-27hyperpen 1.4.0xf86-input-hyperpen-1.4.0Peter Hutterer1-1/+1
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
2011-06-27Require server 1.10 (through pkgconfig, not ABI checks)Peter Hutterer2-5/+1
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
2011-06-27Reset local->private after freeing it.Peter Hutterer1-0/+1
Otherwise xf86DeleteInput() attempts a double-free. Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
2011-06-27Don't call DEVICE_OFF during UnInitPeter Hutterer1-2/+0
The server calls this for us before getting here anyway. Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
2010-11-17Adjust to new PreInit prototype for ABI 12.Peter Hutterer1-80/+64
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
2010-11-17Remove less-than-useful comment.Peter Hutterer1-4/+0
External declarations? Where? Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
2010-11-17Change the XI type from HYPERPEN to STYLUS.Peter Hutterer1-3/+1
STYLUS is also what the wacom driver uses. Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
2010-11-17Remove unused HYPERPEN_SECTION_NAME define.Peter Hutterer1-6/+0
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
2010-11-17Hook the default options into the InputDriverRec.Peter Hutterer1-1/+2
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
2010-11-17Remove refcount from InputDriverRec.Peter Hutterer1-1/+0
Was unused, removed from the server now. Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
2010-11-17Remove ifdef check for XFREE86_LOADERPeter Hutterer1-6/+0
I think we can assume to have loadable modules now... Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
2010-11-17Remove unused wait_for_fd() definePeter Hutterer1-2/+0
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
2010-11-17Remove read/write/tcflush libcwrappers.Peter Hutterer1-7/+1
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
2010-11-17Remove xf86Verbose, XCONFIG_PROBED, nd XCONFIG_GIVEN.Peter Hutterer1-14/+9
Use xf86Msg() instead, rest is handled by the server. Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
2010-11-17Specify Valuator modes on initialization.Peter Hutterer1-3/+6
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
2010-11-17Use GetMotionHistorySize() instead of the history size in the InputInfoRec.Peter Hutterer1-1/+1
The latter is gone with ABI 12. Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
2010-11-17Remove conversion procs and close_proc.Peter Hutterer1-74/+0
All three removed with ABI 12. The former haven't been called for ages by the server anyway. The close_proc hyperpen had was pointless, the fd is closed during DEVICE_CLOSE anyway. Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
2010-11-17Unifdef pre ABI 12 conditions.Peter Hutterer1-17/+0
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
2010-11-17Remove unused bits from configure.acPeter Hutterer1-18/+0
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
2010-11-17Require server 1.9.99.1Peter Hutterer2-1/+5
This driver doesn't have enough testers to justify the time spent maintaining several ABIs. Reduce it to one ABI (the current one) and let's not pretend we know if the others still work. Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
2010-11-17Remove usages of XI_PRIVATE()Peter Hutterer1-4/+2
Removed from the server with ABI 12. Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
2010-11-17Remove RCS tags.Peter Hutterer1-1/+0
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
2010-11-17Remove libcwrappers for free() and malloc().Peter Hutterer1-5/+5
The future is here! Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
2010-11-17Rename LocalDevicePtr references with InputInfoPtr.Peter Hutterer1-101/+101
LocalDevicePtr was remvoed with ABI 12, the two describe the same struct anyway. Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
2010-11-17Fixed indentation, dropped trailing whitespacesManuel Reimer1-649/+606
Signed-off-by: Manuel Reimer <manuel.reimer@gmx.de> Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
2010-11-17Bump to 1.3.99.1Peter Hutterer1-1/+1
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
2009-07-17Cope with XINPUT ABI 7.Peter Hutterer1-2/+22
2009-05-11Fill in COPYING & AUTHORS files, add SubmittingPatches URL to READMEAlan Coopersmith3-14/+36
2009-02-27hyperpen 1.3.0xf86-input-hyperpen-1.3.0Peter Hutterer1-1/+1
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
2009-01-30Add README with pointers to mailing list, bugzilla & git reposAlan Coopersmith1-0/+20
2008-08-14Remove XFREE86_V4 cruft.Peter Hutterer1-541/+1
2008-05-26Check for XINPUT ABI 3.Peter Hutterer1-0/+2
2008-03-20hyperpen 1.2.0xf86-input-hyperpen-1.2.0Adam Jackson1-1/+1
2008-03-08Makefile.am: nuke RCS IdMatthieu Herrb1-1/+0
2007-12-07Make the hyperpen driver actually report sensible pressure values.Bartosz Fabianowski1-0/+2
2007-09-20Don't check if the device is a core device or not.Peter Hutterer1-10/+3
Remove call to xf86IsCore (doesn't exist anymore anyway) and unconditionally try to generate ProximityEvents. The device should not bother whether it's a core event or not, it's all handled in the dix now.
2007-09-03Add *~ to .gitignore to skip patch/emacs droppingsJames Cloos1-0/+1
2007-08-23Rename .cvsignore to .gitignoreJames Cloos3-0/+0
2007-08-06Use PACKAGE_VERSION_MAJOR/MINOR/PATCHLEVEL in xf86HypVersionRecBrice Goglin1-1/+1
2006-04-07Unlibcwrap. Bump server version requirement. Bump to 1.1.0.xf86-video-impact-0_2_0hyperpen-1_1_0XORG-7_1Adam Jackson3-6/+10
2005-12-21Update package version for X11R7 release.XORG-7_0Kevin E Martin2-1/+6