summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex Deucher <alexander.deucher@amd.com>2012-09-20 11:16:36 -0400
committerAlex Deucher <alexander.deucher@amd.com>2012-09-20 11:17:52 -0400
commit7b4aefd3c9c1b04832306b8114b3f2007318f087 (patch)
treee2191ac38cc620656aee3b2d926b3df1479e5238
parentae3023e9675a033ff66b9bb14598aa1f02530d7f (diff)
r600g/llvm: rs780/rs880 are r600 asics
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
-rw-r--r--src/gallium/drivers/r600/r600_llvm.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gallium/drivers/r600/r600_llvm.c b/src/gallium/drivers/r600/r600_llvm.c
index 3d09ce3e8f3..dd0a714ebf6 100644
--- a/src/gallium/drivers/r600/r600_llvm.c
+++ b/src/gallium/drivers/r600/r600_llvm.c
@@ -259,10 +259,10 @@ const char * r600_llvm_gpu_string(enum radeon_family family)
case CHIP_RV630:
case CHIP_RV620:
case CHIP_RV635:
- gpu_family = "r600";
- break;
case CHIP_RS780:
case CHIP_RS880:
+ gpu_family = "r600";
+ break;
case CHIP_RV710:
gpu_family = "rv710";
break;