summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorChris Wilson <chris@chris-wilson.co.uk>2013-07-26 15:38:20 +0100
committerChris Wilson <chris@chris-wilson.co.uk>2013-07-28 14:49:07 +0100
commit0e2a1c27b7d7cd5b305fb092a27ef57ba266aebd (patch)
treea27eadcdc1f98c9481be5dd6c2b80138e62d1c57 /src
parent8d10c32d650df36019d55cfc2e31d7641be4032d (diff)
sna/gen7: Rename Valleyview to Baytrail
The codename changed midcycle - along more rational lines (all the chips within the platform are now part of the Baytrail family rather than different codenames for each). Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Diffstat (limited to 'src')
-rw-r--r--src/sna/gen7_render.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/sna/gen7_render.c b/src/sna/gen7_render.c
index a037b359..7196956d 100644
--- a/src/sna/gen7_render.c
+++ b/src/sna/gen7_render.c
@@ -110,8 +110,8 @@ static const struct gt_info ivb_gt2_info = {
.urb = { 256, 704, 320 },
};
-static const struct gt_info vlv_gt_info = {
- .name = "Valleyview (gen7)",
+static const struct gt_info byt_gt_info = {
+ .name = "Baytrail (gen7)",
.urb = { 128, 64, 64 },
.max_vs_threads = 36,
.max_gs_threads = 36,
@@ -3764,7 +3764,7 @@ static bool gen7_render_setup(struct sna *sna)
state->info = &ivb_gt2_info; /* XXX requires GT_MODE WiZ disabled */
}
} else if (sna->kgem.gen == 071) {
- state->info = &vlv_gt_info;
+ state->info = &byt_gt_info;
} else if (sna->kgem.gen == 075) {
state->info = &hsw_gt_info;
if (sna->PciInfo->device_id & 0xf) {