diff options
author | Fabio Pedretti <[email protected]> | 2011-11-14 10:54:19 -0500 |
---|---|---|
committer | Alex Deucher <[email protected]> | 2011-11-14 10:54:19 -0500 |
commit | 8f55f5b77b1f3f6b5777d0e75ba390b67c7a0901 (patch) | |
tree | 33ead5e2d07eebb3790fabd6b35cf9300e821f10 /src/mesa/drivers/dri/radeon/radeon_chipset.h | |
parent | 494d0053909f4304c4d8050f8bc859edc7f05e36 (diff) |
radeon: further cleanup of shared code
Signed-off-by: Alex Deucher <[email protected]>
Diffstat (limited to 'src/mesa/drivers/dri/radeon/radeon_chipset.h')
-rw-r--r-- | src/mesa/drivers/dri/radeon/radeon_chipset.h | 13 |
1 files changed, 3 insertions, 10 deletions
diff --git a/src/mesa/drivers/dri/radeon/radeon_chipset.h b/src/mesa/drivers/dri/radeon/radeon_chipset.h index 445e0854fc4..10cf348fb5a 100644 --- a/src/mesa/drivers/dri/radeon/radeon_chipset.h +++ b/src/mesa/drivers/dri/radeon/radeon_chipset.h @@ -1,7 +1,5 @@ #ifndef _RADEON_CHIPSET_H #define _RADEON_CHIPSET_H -/* Including xf86PciInfo.h introduces a bunch of errors... - */ /* General chip classes: * r100 includes R100, RV100, RV200, RS100, RS200, RS250. @@ -35,13 +33,8 @@ enum { CHIP_FAMILY_LAST }; -/* General classes of Radeons, as described above the device ID section */ -#define RADEON_CLASS_R100 (0 << 0) -#define RADEON_CLASS_R200 (1 << 0) -#define RADEON_CLASS_MASK (3 << 0) - -#define RADEON_CHIPSET_TCL (1 << 2) /* tcl support - any radeon */ -#define RADEON_CHIPSET_BROKEN_STENCIL (1 << 3) /* r100 stencil bug */ -#define R200_CHIPSET_YCBCR_BROKEN (1 << 4) /* r200 ycbcr bug */ +#define RADEON_CHIPSET_TCL (1 << 0) /* tcl support - any radeon */ +#define RADEON_CHIPSET_BROKEN_STENCIL (1 << 1) /* r100 stencil bug */ +#define R200_CHIPSET_YCBCR_BROKEN (1 << 2) /* r200 ycbcr bug */ #endif /* _RADEON_CHIPSET_H */ |