diff options
author | Adam Jackson <ajax@redhat.com> | 2009-05-28 14:56:22 -0400 |
---|---|---|
committer | Adam Jackson <ajax@redhat.com> | 2009-05-28 14:56:30 -0400 |
commit | 1bfde92b1e2c1a386b679b67f1901a57623db633 (patch) | |
tree | 7ae703213da04af6c3010229976387b63c3dd642 /src/gx_driver.c | |
parent | 106c341c4076f7714cd67e0fcf5942a22554c8f3 (diff) |
Remove useless loader symbol lists.
Diffstat (limited to 'src/gx_driver.c')
-rw-r--r-- | src/gx_driver.c | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/src/gx_driver.c b/src/gx_driver.c index f842712..b713897 100644 --- a/src/gx_driver.c +++ b/src/gx_driver.c @@ -73,14 +73,6 @@ extern OptionInfoRec GX_GeodeOptions[]; -extern const char *amdVgahwSymbols[]; -extern const char *amdVbeSymbols[]; -extern const char *amdInt10Symbols[]; -extern const char *amdFbSymbols[]; -extern const char *amdXaaSymbols[]; -extern const char *amdExaSymbols[]; -extern const char *amdRamdacSymbols[]; - unsigned char *XpressROMPtr; static inline void @@ -622,7 +614,6 @@ GXPreInit(ScrnInfoPtr pScrni, int flags) if (!xf86LoadSubModule(pScrni, "int10")) return FALSE; - xf86LoaderReqSymLists(amdInt10Symbols, NULL); pVesa = pGeode->vesa; @@ -699,26 +690,18 @@ GXPreInit(ScrnInfoPtr pScrni, int flags) return FALSE; } - xf86LoaderReqSymLists(amdFbSymbols, NULL); - if (pGeode->NoAccel == FALSE) { const char *module = (pGeode->useEXA) ? "exa" : "xaa"; - const char **symbols = (pGeode->useEXA) ? - &amdExaSymbols[0] : &amdXaaSymbols[0]; if (!xf86LoadSubModule(pScrni, module)) { return FALSE; } - - xf86LoaderReqSymLists(symbols, NULL); } if (pGeode->tryHWCursor == TRUE) { if (!xf86LoadSubModule(pScrni, "ramdac")) { return FALSE; } - - xf86LoaderReqSymLists(amdRamdacSymbols, NULL); } if (xf86RegisterResources(pGeode->pEnt->index, NULL, ResExclusive)) { |