aboutsummaryrefslogtreecommitdiffstats
path: root/src/gallium/drivers
diff options
context:
space:
mode:
authorAlex Deucher <[email protected]>2013-06-07 13:58:34 -0400
committerAlex Deucher <[email protected]>2013-06-28 15:15:20 -0400
commit5b3f1ea933a7ab6aa09ecdd1529b2baac558804e (patch)
treecd5728064ec24f24d933047cb6b615f355a06401 /src/gallium/drivers
parent47e35eff9dec8666efd70ffd08e4b03f83215026 (diff)
radeonsi: rename SI chip class from TAHITI to SI
Covers the entire family. Signed-off-by: Alex Deucher <[email protected]>
Diffstat (limited to 'src/gallium/drivers')
-rw-r--r--src/gallium/drivers/radeonsi/radeonsi_pipe.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gallium/drivers/radeonsi/radeonsi_pipe.c b/src/gallium/drivers/radeonsi/radeonsi_pipe.c
index 3f4cd78cd57..775fa97306d 100644
--- a/src/gallium/drivers/radeonsi/radeonsi_pipe.c
+++ b/src/gallium/drivers/radeonsi/radeonsi_pipe.c
@@ -232,7 +232,7 @@ static struct pipe_context *r600_create_context(struct pipe_screen *screen, void
}
switch (rctx->chip_class) {
- case TAHITI:
+ case SI:
si_init_state_functions(rctx);
LIST_INITHEAD(&rctx->active_query_list);
rctx->cs = rctx->ws->cs_create(rctx->ws, RING_GFX, NULL);
@@ -795,7 +795,7 @@ struct pipe_screen *radeonsi_screen_create(struct radeon_winsys *ws)
/* setup class */
if (rscreen->family >= CHIP_TAHITI) {
- rscreen->chip_class = TAHITI;
+ rscreen->chip_class = SI;
} else {
fprintf(stderr, "r600: Unsupported family %d\n", rscreen->family);
FREE(rscreen);