dix: don't check VCK and VCP separately when looking for device ids.

Both are part of the device list again, so we cover them there.
This commit is contained in:
Peter Hutterer 2007-10-14 07:50:13 +09:30
parent 032e906711
commit 7503d13407

View File

@ -107,10 +107,6 @@ AddInputDevice(DeviceProc deviceProc, Bool autoStart)
/* Find next available id */
memset(devind, 0, sizeof(char)*MAX_DEVICES);
if (inputInfo.keyboard)
devind[inputInfo.keyboard->id]++;
if (inputInfo.pointer)
devind[inputInfo.pointer->id]++;
for (devtmp = inputInfo.devices; devtmp; devtmp = devtmp->next)
devind[devtmp->id]++;
for (devtmp = inputInfo.off_devices; devtmp; devtmp = devtmp->next)