summaryrefslogtreecommitdiff
path: root/src/ati.c
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/ati.c
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/ati.c')
-rw-r--r--src/ati.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ati.c b/src/ati.c
index 85da389d..387aaca2 100644
--- a/src/ati.c
+++ b/src/ati.c
@@ -78,7 +78,7 @@ enum
ATI_CHIP_FAMILY_Radeon
};
-static int ATIChipID(const CARD16);
+static int ATIChipID(const uint16_t);
#ifdef XSERVER_LIBPCIACCESS
@@ -249,7 +249,7 @@ ati_gdev_subdriver(pointer options)
* This returns the ATI_CHIP_FAMILY_* value associated with a particular ChipID.
*/
static int
-ATIChipID(const CARD16 ChipID)
+ATIChipID(const uint16_t ChipID)
{
switch (ChipID)
{