diff options
author | Guillem Jover <guillem@hadrons.org> | 2010-10-21 03:27:34 +0200 |
---|---|---|
committer | Guillem Jover <guillem@hadrons.org> | 2010-10-21 07:26:44 +0200 |
commit | 5e09be624bd6c064e425f2aeeb0693285a76cf9a (patch) | |
tree | 41a768f3488e3601fb51b8c8bff2a6619ba6a637 | |
parent | d58132f35de5140ff86cec0359f1ab9cb1709590 (diff) |
Drop useless symbol lists
The functions are not available anymore.
-rw-r--r-- | src/glide_driver.c | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/src/glide_driver.c b/src/glide_driver.c index e88a1b5..bebbb8f 100644 --- a/src/glide_driver.c +++ b/src/glide_driver.c @@ -202,26 +202,6 @@ static SymTabRec GLIDEChipsets[] = { }; -/* - * List of symbols from other modules that this module references. This - * list is used to tell the loader that it is OK for symbols here to be - * unresolved providing that it hasn't been told that they haven't been - * told that they are essential via a call to xf86LoaderReqSymbols() or - * xf86LoaderReqSymLists(). The purpose is this is to avoid warnings about - * unresolved symbols that are not required. - */ - -static const char *fbSymbols[] = { - "fbScreenInit", - "fbPictureInit", - NULL -}; - -static const char *shadowSymbols[] = { - "ShadowFBInit", - NULL -}; - #ifdef XFree86LOADER static MODULESETUPPROTO(glideSetup); @@ -294,12 +274,6 @@ glideSetup(pointer module, pointer opts, int *errmaj, int *errmin) xf86AddDriver(&GLIDE, module, 0); /* - * Tell the loader about symbols from other modules that this module - * might refer to. - */ - LoaderRefSymLists(fbSymbols, shadowSymbols, NULL); - - /* * The return value must be non-NULL on success even though there * is no TearDownProc. */ @@ -633,14 +607,11 @@ GLIDEPreInit(ScrnInfoPtr pScrn, int flags) return FALSE; } - xf86LoaderReqSymLists(fbSymbols, NULL); - /* Load the shadow framebuffer */ if (!xf86LoadSubModule(pScrn, "shadowfb")) { GLIDEFreeRec(pScrn); return FALSE; } - xf86LoaderReqSymLists(shadowSymbols, NULL); return TRUE; } |