summaryrefslogtreecommitdiff
path: root/hw/xfree86/vbe/vbe_module.c
diff options
context:
space:
mode:
authorAdam Jackson <ajax@theobromine.nwnk.net>2006-07-21 18:47:18 -0400
committerAdam Jackson <ajax@theobromine.nwnk.net>2006-07-21 18:47:18 -0400
commit63dfaa1d5ba556e09314ec914936e5471aab94b0 (patch)
tree1193da78df4f6b2090d50b909c00ec9799fa7212 /hw/xfree86/vbe/vbe_module.c
parentbca9364f3f4a2376edbcf57a34f704ce28be21ba (diff)
Delete internal usage of the symbol ref/req lists.
Diffstat (limited to 'hw/xfree86/vbe/vbe_module.c')
-rw-r--r--hw/xfree86/vbe/vbe_module.c16
1 files changed, 0 insertions, 16 deletions
diff --git a/hw/xfree86/vbe/vbe_module.c b/hw/xfree86/vbe/vbe_module.c
index 7c7d87660..cf37ef951 100644
--- a/hw/xfree86/vbe/vbe_module.c
+++ b/hw/xfree86/vbe/vbe_module.c
@@ -6,8 +6,6 @@
#include "xf86str.h"
#include "vbe.h"
-extern const char *vbe_ddcSymbols[];
-
static MODULESETUPPROTO(vbeSetup);
static XF86ModuleVersionInfo vbeVersRec =
@@ -29,19 +27,5 @@ _X_EXPORT XF86ModuleData vbeModuleData = { &vbeVersRec, vbeSetup, NULL };
static pointer
vbeSetup(pointer module, pointer opts, int *errmaj, int *errmin)
{
- static Bool setupDone = FALSE;
-
- if (!setupDone) {
- setupDone = TRUE;
- LoaderRefSymLists(vbe_ddcSymbols,NULL);
- /*
- * Tell the loader about symbols from other modules that this module
- * might refer to.
- */
- }
- /*
- * The return value must be non-NULL on success even though there
- * is no TearDownProc.
- */
return (pointer)1;
}