dix: unexport InitVelocityData()
Not used by any modules, not even outside the source file, thus no need to export it. Signed-off-by: Enrico Weigelt, metux IT consult <info@metux.net> Part-of: <https://gitlab.freedesktop.org/xorg/xserver/-/merge_requests/1347>
This commit is contained in:
parent
a3ebe4fa41
commit
4db1f3f760
|
@ -95,8 +95,7 @@ DeletePredictableAccelerationProperties(DeviceIntPtr,
|
|||
/**
|
||||
* Init DeviceVelocity struct so it should match the average case
|
||||
*/
|
||||
void
|
||||
InitVelocityData(DeviceVelocityPtr vel)
|
||||
static void InitVelocityData(DeviceVelocityPtr vel)
|
||||
{
|
||||
memset(vel, 0, sizeof(DeviceVelocityRec));
|
||||
|
||||
|
|
|
@ -81,9 +81,6 @@ typedef struct _DeviceVelocityRec {
|
|||
} statistics;
|
||||
} DeviceVelocityRec, *DeviceVelocityPtr;
|
||||
|
||||
extern _X_EXPORT void
|
||||
InitVelocityData(DeviceVelocityPtr vel);
|
||||
|
||||
extern _X_EXPORT void
|
||||
InitTrackers(DeviceVelocityPtr vel, int ntracker);
|
||||
|
||||
|
|
Loading…
Reference in New Issue