diff options
author | Matthieu Herrb <matthieu@cvs.openbsd.org> | 2008-09-16 22:02:32 +0000 |
---|---|---|
committer | Matthieu Herrb <matthieu@cvs.openbsd.org> | 2008-09-16 22:02:32 +0000 |
commit | 7736c2bafd7a04dc746c16a4ff9ee36c4ac37c81 (patch) | |
tree | 9213d3b2a29a9fac5bb8db377e94cd359d90c06d /driver/xf86-video-cirrus/src/cir.h | |
parent | 162bd6f0e68ae2722e1d4691ebde1dd405b7cde5 (diff) |
xf86-video-cirrus 1.2.1 + one bug fix from git-current.
Tested on alpine gl5446 on alpha.
Diffstat (limited to 'driver/xf86-video-cirrus/src/cir.h')
-rw-r--r-- | driver/xf86-video-cirrus/src/cir.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/driver/xf86-video-cirrus/src/cir.h b/driver/xf86-video-cirrus/src/cir.h index ccd43da07..904d9cc60 100644 --- a/driver/xf86-video-cirrus/src/cir.h +++ b/driver/xf86-video-cirrus/src/cir.h @@ -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; |