summaryrefslogtreecommitdiff
path: root/src/atimodule.c
diff options
context:
space:
mode:
authorGeorge Sapountzis <gsap7@yahoo.gr>2007-03-21 20:24:22 +0200
committerGeorge Sapountzis <gsap7@yahoo.gr>2008-01-11 15:31:02 +0200
commit63b4b8213fabc5a57f897b60b6eaa9f78d86e6ff (patch)
tree0b352ec2ee1b9d4664fcbcf20bd35a07f0497c53 /src/atimodule.c
parent10e7636c02478b8ffe183bb0c46229ca0d6584e1 (diff)
[mach64] Drop symbol lists.
egrep LOADER\|SymLists\|Symbols src/*.[hc] not needed after server commit bca9364f3f4a2376edbcf57a34f704ce28be21ba, i.e. xserver 1.2 compile-tested only
Diffstat (limited to 'src/atimodule.c')
-rw-r--r--src/atimodule.c35
1 files changed, 0 insertions, 35 deletions
diff --git a/src/atimodule.c b/src/atimodule.c
index 6aa9a2e7..12b4ffd9 100644
--- a/src/atimodule.c
+++ b/src/atimodule.c
@@ -24,38 +24,11 @@
#include "config.h"
#endif
-#ifdef XFree86LOADER
-
#include "ati.h"
-#include "atimodule.h"
#include "ativersion.h"
/* Module loader interface */
-const char *ATISymbols[] =
-{
- "Mach64Identify",
- "Mach64Probe",
- "Mach64AvailableOptions",
- NULL
-};
-
-const char *R128Symbols[] =
-{
- "R128Identify",
- "R128Probe",
- "R128AvailableOptions",
- NULL
-};
-
-const char *RADEONSymbols[] =
-{
- "RADEONIdentify",
- "RADEONProbe",
- "RADEONAvailableOptions",
- NULL
-};
-
static XF86ModuleVersionInfo ATIVersionRec =
{
ATI_DRIVER_NAME,
@@ -90,12 +63,6 @@ ATISetup
{
Inited = TRUE;
xf86AddDriver(&ATI, Module, 0);
-
- xf86LoaderRefSymLists(
- ATISymbols,
- R128Symbols,
- RADEONSymbols,
- NULL);
}
return (pointer)1;
@@ -108,5 +75,3 @@ _X_EXPORT XF86ModuleData atiModuleData =
ATISetup,
NULL
};
-
-#endif /* XFree86LOADER */