summaryrefslogtreecommitdiffstats
path: root/x11-drivers/xf86-video-intel/files/extra-src_i830_driver.c
blob: 776b67f915d1ae14be2c0275c36ca3f75232fd63 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
--- src/i830_driver.c.orig  2010-02-21 13:20:12.000000000 -0600
+++ src/i830_driver.c   2010-02-21 13:26:14.000000000 -0600
@@ -175,8 +175,6 @@
 
 #include "xf86.h"
 #include "xf86_OSproc.h"
-#include "xf86Resources.h"
-#include "xf86RAC.h"
 #include "xf86Priv.h"
 #include "xf86cmap.h"
 #include "compiler.h"
@@ -1050,7 +1048,6 @@
    if (!xf86LoadSubModule(pScrn, "ddc")) {
       pI830->ddc2 = FALSE;
    } else {
-      xf86LoaderReqSymLists(I810ddcSymbols, NULL);
       pI830->ddc2 = TRUE;
    }
 
@@ -1058,8 +1055,6 @@
    /* 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;
@@ -1511,11 +1506,9 @@
     /* 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;
 }
@@ -1854,12 +1847,6 @@
              pI830->PciInfo->func);
 #endif
 
-   if (xf86RegisterResources(pI830->pEnt->index, NULL, ResNone)) {
-      PreInitCleanup(pScrn);
-      return FALSE;
-   }
-
-   pScrn->racMemFlags = RAC_FB | RAC_COLORMAP;
    pScrn->monitor = pScrn->confScreen->monitor;
    pScrn->progClock = TRUE;
    pScrn->rgbBits = 8;
@@ -1942,8 +1929,6 @@
       return FALSE;
    }
 
-   xf86LoaderReqSymLists(I810fbSymbols, NULL);
-
    switch (pI830->accel) {
 #ifdef I830_USE_XAA
    case ACCEL_XAA:
@@ -1951,7 +1936,6 @@
     PreInitCleanup(pScrn);
     return FALSE;
       }
-      xf86LoaderReqSymLists(I810xaaSymbols, NULL);
       break;
 #endif
 
@@ -1973,7 +1957,6 @@
     PreInitCleanup(pScrn);
     return FALSE;
       }
-      xf86LoaderReqSymLists(I830exaSymbols, NULL);
       break;
    }
 #endif
@@ -1988,17 +1971,13 @@
 
        /*  We won't be using the VGA access after the probe. */
        I830SetMMIOAccess(pI830);
-       xf86SetOperatingState(resVgaIo, pI830->pEnt->index, ResUnusedOpr);
-       xf86SetOperatingState(resVgaMem, pI830->pEnt->index, ResDisableOpr);
    }
 
 #if defined(XF86DRI)
    /* Load the dri module if requested. */
    if (xf86ReturnOptValBool(pI830->Options, OPTION_DRI, FALSE) &&
        pI830->directRenderingType != DRI_DISABLED) {
-      if (xf86LoadSubModule(pScrn, "dri")) {
-    xf86LoaderReqSymLists(I810driSymbols, I810drmSymbols, NULL);
-      }
+      xf86LoadSubModule(pScrn, "dri");
    }
 #endif