diff options
author | Michel Dänzer <michel@tungstengraphics.com> | 2007-10-04 11:32:48 +0200 |
---|---|---|
committer | Michel Dänzer <michel@tungstengraphics.com> | 2007-10-04 11:32:48 +0200 |
commit | 1110957ba703475847b8e72023c6edcbd1068aef (patch) | |
tree | d07cfa64a7d9899a1057dd15c8a2293c51245a94 /src/radeon.h | |
parent | 7addf41885ec5658f531624a9c24ea5bd7d22d19 (diff) |
radeon: Fix for pci-rework.
Surprisingly easy, thanks to George's pci-rework changes.
Diffstat (limited to 'src/radeon.h')
-rw-r--r-- | src/radeon.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/radeon.h b/src/radeon.h index 610e2b3e..ad94cc51 100644 --- a/src/radeon.h +++ b/src/radeon.h @@ -88,6 +88,8 @@ #include "picturestr.h" #endif +#include "atipcirename.h" + #ifndef MAX #define MAX(a,b) ((a)>(b)?(a):(b)) #endif @@ -456,8 +458,8 @@ typedef struct { CARD32 mc_fb_location; CARD32 mc_agp_location; - unsigned char *MMIO; /* Map of MMIO region */ - unsigned char *FB; /* Map of frame buffer */ + void *MMIO; /* Map of MMIO region */ + void *FB; /* Map of frame buffer */ CARD8 *VBIOS; /* Video BIOS pointer */ Bool IsAtomBios; /* New BIOS used in R420 etc. */ |