summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJulien Cristau <jcristau@debian.org>2010-03-03 23:48:33 +0100
committerJulien Cristau <jcristau@debian.org>2010-03-03 23:49:12 +0100
commita6fedb3d2fd0288283602fef14f2a0a460b2afef (patch)
tree7b086b4595df79750dbab11ead735c7e67d0bd6a
parent1d6ba7c8c8c7183569f9dc708090f36de8b6bdd6 (diff)
Don't use obsolete loader functions
-rw-r--r--src/xf86PM.c50
1 files changed, 0 insertions, 50 deletions
diff --git a/src/xf86PM.c b/src/xf86PM.c
index 1e38124..14cbe22 100644
--- a/src/xf86PM.c
+++ b/src/xf86PM.c
@@ -84,62 +84,12 @@ static XF86ModuleVersionInfo VersionRec =
* a tool */
};
-
-static const char *reqSymbols[] = {
- "AddEnabledDevice",
- "ErrorF",
- "InitButtonClassDeviceStruct",
- "InitProximityClassDeviceStruct",
- "InitValuatorAxisStruct",
- "InitValuatorClassDeviceStruct",
- "InitPtrFeedbackClassDeviceStruct",
- "RemoveEnabledDevice",
- "Xcalloc",
- "Xfree",
- "XisbBlockDuration",
- "XisbFree",
- "XisbNew",
- "XisbRead",
- "XisbTrace",
- "screenInfo",
- "xf86AddInputDriver",
- "xf86AllocateInput",
- "xf86CloseSerial",
- "xf86CollectInputOptions",
- "xf86ErrorFVerb",
- "xf86FindOptionValue",
-#if GET_ABI_MAJOR(ABI_XINPUT_VERSION) < 3
- "xf86GetMotionEvents",
-#endif
- "xf86GetVerbosity",
- "xf86MotionHistoryAllocate",
- "xf86NameCmp",
- "xf86OpenSerial",
- "xf86OptionListCreate",
- "xf86OptionListMerge",
- "xf86OptionListReport",
- "xf86PostButtonEvent",
- "xf86PostMotionEvent",
- "xf86PostProximityEvent",
- "xf86ProcessCommonOptions",
- "xf86ScaleAxis",
- "xf86SetIntOption",
- "xf86SetStrOption",
- "xf86XInputSetScreen",
-#if GET_ABI_MAJOR(ABI_XINPUT_VERSION) == 0
- "xf86XInputSetSendCoreEvents",
-#endif
- NULL
-};
-
-
static pointer
PenMountSetupProc( pointer module,
pointer options,
int *errmaj,
int *errmin )
{
- xf86LoaderReqSymLists(reqSymbols, NULL);
xf86AddInputDriver(&PENMOUNT, module, 0);
return (pointer) 1;
}