summaryrefslogtreecommitdiff
path: root/src/radeon_atombios.h
diff options
context:
space:
mode:
authorMatt Turner <mattst88@gmail.com>2008-05-12 12:06:33 -0400
committerAlex Deucher <alex@botch2.com>2008-05-12 12:06:33 -0400
commit908b7b940e3ef296836bc94680ebb8ab67650e31 (patch)
tree20edaba5bffdef2b3625f73ff5d297d3b0c952cb /src/radeon_atombios.h
parent87e66ce76430890ab4939ffcd42f72b9288eb598 (diff)
Replace CARD{8,16,32} with uint{8,16,32}_t
As has been done with xf86-video-intel, replace all CARD* datatypes with uint*_t datatypes available from stdint.h.
Diffstat (limited to 'src/radeon_atombios.h')
-rw-r--r--src/radeon_atombios.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/radeon_atombios.h b/src/radeon_atombios.h
index 955f2e4e..b4a19aad 100644
--- a/src/radeon_atombios.h
+++ b/src/radeon_atombios.h
@@ -98,7 +98,7 @@ typedef struct AtomFb {
typedef union AtomBiosArg
{
- CARD32 val;
+ uint32_t val;
struct rhdConnectorInfo *connectorInfo;
unsigned char* EDIDBlock;
atomBiosHandlePtr atomhandle;
@@ -242,7 +242,7 @@ typedef struct _atomBiosHandle {
atomDataTablesPtr atomDataPtr;
unsigned int cmd_offset;
pointer *scratchBase;
- CARD32 fbBase;
+ uint32_t fbBase;
#if XSERVER_LIBPCIACCESS
struct pci_device *device;
#else