mirror of
https://github.com/X11Libre/xf86-input-evdev.git
synced 2026-04-14 11:44:16 +00:00
Compare commits
2 Commits
xf86-input
...
xf86-input
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
30c3645e20 | ||
|
|
3b52fe2ea4 |
@@ -23,7 +23,7 @@
|
||||
# Initialize Autoconf
|
||||
AC_PREREQ([2.60])
|
||||
AC_INIT([xf86-input-evdev],
|
||||
[2.5.99.903],
|
||||
[2.6.0],
|
||||
[https://bugs.freedesktop.org/enter_bug.cgi?product=xorg],
|
||||
[xf86-input-evdev])
|
||||
AC_CONFIG_SRCDIR([Makefile.am])
|
||||
|
||||
20
src/evdev.c
20
src/evdev.c
@@ -1320,8 +1320,11 @@ EvdevAddAbsClass(DeviceIntPtr device)
|
||||
#if GET_ABI_MAJOR(ABI_XINPUT_VERSION) < 3
|
||||
GetMotionHistory,
|
||||
#endif
|
||||
GetMotionHistorySize(), Absolute))
|
||||
GetMotionHistorySize(), Absolute)) {
|
||||
xf86Msg(X_ERROR, "%s: failed to initialize valuator class device.\n",
|
||||
device->name);
|
||||
return !Success;
|
||||
}
|
||||
|
||||
for (axis = ABS_X; axis <= ABS_MAX; axis++) {
|
||||
int axnum = pEvdev->axis_map[axis];
|
||||
@@ -1365,8 +1368,11 @@ EvdevAddAbsClass(DeviceIntPtr device)
|
||||
}
|
||||
}
|
||||
|
||||
if (!InitPtrFeedbackClassDeviceStruct(device, EvdevPtrCtrlProc))
|
||||
if (!InitPtrFeedbackClassDeviceStruct(device, EvdevPtrCtrlProc)) {
|
||||
xf86Msg(X_ERROR, "%s: failed to initialize pointer feedback class "
|
||||
"device.\n", device->name);
|
||||
return !Success;
|
||||
}
|
||||
|
||||
if (pEvdev->flags & EVDEV_TOUCHPAD)
|
||||
pEvdev->flags |= EVDEV_RELATIVE_MODE;
|
||||
@@ -1449,11 +1455,17 @@ EvdevAddRelClass(DeviceIntPtr device)
|
||||
#if GET_ABI_MAJOR(ABI_XINPUT_VERSION) < 3
|
||||
GetMotionHistory,
|
||||
#endif
|
||||
GetMotionHistorySize(), Relative))
|
||||
GetMotionHistorySize(), Relative)) {
|
||||
xf86Msg(X_ERROR, "%s: failed to initialize valuator class device.\n",
|
||||
device->name);
|
||||
return !Success;
|
||||
}
|
||||
|
||||
if (!InitPtrFeedbackClassDeviceStruct(device, EvdevPtrCtrlProc))
|
||||
if (!InitPtrFeedbackClassDeviceStruct(device, EvdevPtrCtrlProc)) {
|
||||
xf86Msg(X_ERROR, "%s: failed to initialize pointer feedback class "
|
||||
"device.\n", device->name);
|
||||
return !Success;
|
||||
}
|
||||
|
||||
for (axis = REL_X; axis <= REL_MAX; axis++)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user