diff options
author | Adam Jackson <ajax@redhat.com> | 2009-05-28 15:03:45 -0400 |
---|---|---|
committer | Adam Jackson <ajax@redhat.com> | 2009-05-28 15:03:45 -0400 |
commit | 704771f1c595df481d244a6f074e9f5620d4a720 (patch) | |
tree | 59f338071f8761f4f360c3a889d86bd39fbcbaaf /src/i830_driver.c | |
parent | 8e942b70cb9a784b3f1311affd6fc74c4bcf68bb (diff) |
Remove useless loader symbol lists.
Diffstat (limited to 'src/i830_driver.c')
-rw-r--r-- | src/i830_driver.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/src/i830_driver.c b/src/i830_driver.c index 0b6bb718..8375e944 100644 --- a/src/i830_driver.c +++ b/src/i830_driver.c @@ -824,7 +824,6 @@ I830PreInitDDC(ScrnInfoPtr pScrn) if (!xf86LoadSubModule(pScrn, "ddc")) { pI830->ddc2 = FALSE; } else { - xf86LoaderReqSymLists(I810ddcSymbols, NULL); pI830->ddc2 = TRUE; } @@ -832,8 +831,6 @@ I830PreInitDDC(ScrnInfoPtr pScrn) /* Load I2C if we have the code to use it */ if (pI830->ddc2) { if (xf86LoadSubModule(pScrn, "i2c")) { - xf86LoaderReqSymLists(I810i2cSymbols, NULL); - pI830->ddc2 = TRUE; } else { pI830->ddc2 = FALSE; @@ -1266,11 +1263,9 @@ I830LoadSyms(ScrnInfoPtr pScrn) /* The vgahw module should be loaded here when needed */ if (!xf86LoadSubModule(pScrn, "vgahw")) return FALSE; - xf86LoaderReqSymLists(I810vgahwSymbols, NULL); if (!xf86LoadSubModule(pScrn, "ramdac")) return FALSE; - xf86LoaderReqSymLists(I810ramdacSymbols, NULL); return TRUE; } @@ -1675,8 +1670,6 @@ I830PreInit(ScrnInfoPtr pScrn, int flags) return FALSE; } - xf86LoaderReqSymLists(I810fbSymbols, NULL); - if (!pI830->use_drm_mode) { i830CompareRegsToSnapshot(pScrn, "After PreInit"); |