diff options
-rw-r--r-- | src/evdev.c | 72 |
1 files changed, 12 insertions, 60 deletions
diff --git a/src/evdev.c b/src/evdev.c index 47c7cf0..7f4f0c3 100644 --- a/src/evdev.c +++ b/src/evdev.c @@ -65,11 +65,6 @@ /* removed from server, purge when dropping support for server 1.10 */ #define XI86_SEND_DRAG_EVENTS 0x08 -#ifndef MAXDEVICES -#include <inputstr.h> /* for MAX_DEVICES */ -#define MAXDEVICES MAX_DEVICES -#endif - #define ArrayLength(a) (sizeof(a) / (sizeof((a)[0]))) #define MIN_KEYCODE 8 @@ -138,11 +133,6 @@ static Atom prop_btn_label; static Atom prop_device; static Atom prop_virtual; -/* All devices the evdev driver has allocated and knows about. - * MAXDEVICES is safe as null-terminated array, as two devices (VCP and VCK) - * cannot be used by evdev, leaving us with a space of 2 at the end. */ -static EvdevPtr evdev_devices[MAXDEVICES] = {NULL}; - static int EvdevSwitchMode(ClientPtr client, DeviceIntPtr device, int mode) { InputInfoPtr pInfo; @@ -225,58 +215,23 @@ static BOOL EvdevIsDuplicate(InputInfoPtr pInfo) { EvdevPtr pEvdev = pInfo->private; - EvdevPtr* dev = evdev_devices; + InputInfoPtr d; - if (pEvdev->min_maj) + nt_list_for_each_entry(d, xf86FirstLocalDevice(), next) { - while(*dev) - { - if ((*dev) != pEvdev && - (*dev)->min_maj && - (*dev)->min_maj == pEvdev->min_maj) - return TRUE; - dev++; - } - } - return FALSE; -} + EvdevPtr e; -/** - * Add to internal device list. - */ -static void -EvdevAddDevice(InputInfoPtr pInfo) -{ - EvdevPtr pEvdev = pInfo->private; - EvdevPtr* dev = evdev_devices; - - while(*dev) - dev++; - - *dev = pEvdev; -} - -/** - * Remove from internal device list. - */ -static void -EvdevRemoveDevice(InputInfoPtr pInfo) -{ - EvdevPtr pEvdev = pInfo->private; - EvdevPtr *dev = evdev_devices; - int count = 0; + if (strcmp(d->drv->driverName, "evdev") != 0) + continue; - while(*dev) - { - count++; - if (*dev == pEvdev) - { - memmove(dev, dev + 1, - sizeof(evdev_devices) - (count * sizeof(EvdevPtr))); - break; - } - dev++; + e = (EvdevPtr)d->private; + if (e != pEvdev && + e->min_maj && + e->min_maj == pEvdev->min_maj) + return TRUE; } + + return FALSE; } static BOOL @@ -1972,7 +1927,6 @@ EvdevProc(DeviceIntPtr device, int what) xf86IDrvMsg(pInfo, X_INFO, "Close\n"); EvdevCloseDevice(pInfo); EvdevFreeMasks(pEvdev); - EvdevRemoveDevice(pInfo); pEvdev->min_maj = 0; break; @@ -2639,8 +2593,6 @@ EvdevPreInit(InputDriverPtr drv, InputInfoPtr pInfo, int flags) pInfo->type_name); pInfo->type_name = pEvdev->type_name; - EvdevAddDevice(pInfo); - if (pEvdev->flags & EVDEV_BUTTON_EVENTS) { EvdevMBEmuPreInit(pInfo); |