diff options
-rw-r--r-- | man/evdev.man | 6 | ||||
-rw-r--r-- | src/evdev.c | 13 | ||||
-rw-r--r-- | src/evdev.h | 2 |
3 files changed, 21 insertions, 0 deletions
diff --git a/man/evdev.man b/man/evdev.man index 2709d7a..220dd13 100644 --- a/man/evdev.man +++ b/man/evdev.man @@ -220,6 +220,12 @@ is mapped to the negative Y axis motion and button number .I N2 is mapped to the positive Y axis motion. Default: "4 5". Property: "Evdev Wheel Emulation Axes". +.TP 7 +.BI "Option \*qTypeName\*q \*q"type"\*q +Specify the X Input 1.x type (see XListInputDevices(__libmansuffix__)). +There is rarely a need to use this option, evdev will guess the device type +based on the device's capabilities. This option is provided for devices that +need quirks. .SH SUPPORTED PROPERTIES The following properties are provided by the diff --git a/src/evdev.c b/src/evdev.c index 052e9f0..94f5499 100644 --- a/src/evdev.c +++ b/src/evdev.c @@ -2548,6 +2548,9 @@ EvdevUnInit(InputDriverPtr drv, InputInfoPtr pInfo, int flags) /* Release string allocated in EvdevOpenDevice. */ free(pEvdev->device); pEvdev->device = NULL; + + free(pEvdev->type_name); + pEvdev->type_name = NULL; } xf86DeleteInput(pInfo, flags); } @@ -2579,6 +2582,8 @@ EvdevAlloc(void) pEvdev->rel_axis_map[0] = 0; pEvdev->rel_axis_map[1] = 1; + pEvdev->type_name = NULL; + return pEvdev; } @@ -2623,6 +2628,14 @@ EvdevPreInit(InputDriverPtr drv, InputInfoPtr pInfo, int flags) goto error; } + /* Overwrite type_name with custom-defined one (#62831). + Note: pInfo->type_name isn't freed so we need to manually do this + */ + pEvdev->type_name = xf86SetStrOption(pInfo->options, + "TypeName", + pInfo->type_name); + pInfo->type_name = pEvdev->type_name; + EvdevAddDevice(pInfo); if (pEvdev->flags & EVDEV_BUTTON_EVENTS) diff --git a/src/evdev.h b/src/evdev.h index 63c3bfa..6ae389c 100644 --- a/src/evdev.h +++ b/src/evdev.h @@ -251,6 +251,8 @@ typedef struct { EventQueueRec queue[EVDEV_MAXQUEUE]; enum fkeymode fkeymode; + + char *type_name; } EvdevRec, *EvdevPtr; /* Event posting functions */ |