xfree86: drop unused xf86EnableDevice()

Not used anywhere, so no need to keep it around any longer.

Signed-off-by: Enrico Weigelt, metux IT consult <info@metux.net>
This commit is contained in:
Enrico Weigelt, metux IT consult 2025-05-19 17:48:48 +02:00
parent 77d254cb8b
commit f89b48962d
2 changed files with 0 additions and 12 deletions

View File

@ -1525,17 +1525,6 @@ xf86DisableDevice(DeviceIntPtr dev, Bool panic)
}
}
/**
* Reactivate a device. Call this function from the driver if you just found
* out that the read error wasn't quite that bad after all.
* Device will be re-activated, and an event sent to the client.
*/
void
xf86EnableDevice(DeviceIntPtr dev)
{
EnableDevice(dev, TRUE);
}
/**
* Post a touch event with optional valuators. If this is the first touch in
* the sequence, at least x & y valuators must be provided. The driver is

View File

@ -174,7 +174,6 @@ extern _X_EXPORT void xf86InitValuatorDefaults(DeviceIntPtr dev, int axnum);
extern _X_EXPORT void xf86AddEnabledDevice(InputInfoPtr pInfo);
extern _X_EXPORT void xf86RemoveEnabledDevice(InputInfoPtr pInfo);
extern _X_EXPORT void xf86DisableDevice(DeviceIntPtr dev, Bool panic);
extern _X_EXPORT void xf86EnableDevice(DeviceIntPtr dev);
extern _X_EXPORT void xf86InputEnableVTProbe(void);
/* xf86Helper.c */