diff options
author | Dave Airlie <airlied@redhat.com> | 2008-01-08 15:06:33 +1000 |
---|---|---|
committer | Dave Airlie <airlied@redhat.com> | 2008-01-08 15:15:37 +1000 |
commit | 46e982ec0208bf7a32d47cd7cf7b1895e7bbfe1d (patch) | |
tree | 980ba568e2d94a67a14628d2c8978d259ebb960a /src/cir.h | |
parent | 6d114041dc22763aa89ef6a4f4af3246de3e3b1b (diff) |
cirrus initial pci access support
Diffstat (limited to 'src/cir.h')
-rw-r--r-- | src/cir.h | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -11,6 +11,8 @@ #include <string.h> #include <stdlib.h> +#include "cir_pcirename.h" + /* Card-specific driver information */ #define CIRPTR(p) ((CirPtr)((p)->driverPrivate)) struct lgRec; @@ -34,8 +36,8 @@ typedef struct { Bool HasFBitBlt; CARD32 IOAddress; CARD32 FbAddress; - unsigned char * IOBase; - unsigned char * FbBase; + void * IOBase; + void * FbBase; long FbMapSize; long IoMapSize; int MinClock; |