diff options
author | Henri Verbeet <[email protected]> | 2011-07-09 17:18:59 +0200 |
---|---|---|
committer | Henri Verbeet <[email protected]> | 2011-07-09 18:12:50 +0200 |
commit | 89dc31a28d8e5607989ec11cfd29310c1c97f6ac (patch) | |
tree | a11a4f0fe9975edfd132bc676146c0d7dbcbc482 /src/gallium/drivers/r600/r600_asm.h | |
parent | 4f7dfd8ad3185f006e7ae8ed86bafd4d66ebc903 (diff) |
r600g: Replace the CHIPREV_* defines with the chip_class enum.
Signed-off-by: Henri Verbeet <[email protected]>
Diffstat (limited to 'src/gallium/drivers/r600/r600_asm.h')
-rw-r--r-- | src/gallium/drivers/r600/r600_asm.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/r600/r600_asm.h b/src/gallium/drivers/r600/r600_asm.h index 540f45bbd06..423e94b8a1d 100644 --- a/src/gallium/drivers/r600/r600_asm.h +++ b/src/gallium/drivers/r600/r600_asm.h @@ -172,7 +172,7 @@ struct r600_cf_callstack { struct r600_bc { enum radeon_family family; - int chiprev; /* 0 - r600, 1 - r700, 2 - evergreen */ + enum chip_class chip_class; int type; struct list_head cf; struct r600_bc_cf *cf_last; |