aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorAlyssa Rosenzweig <[email protected]>2019-03-12 22:42:16 +0000
committerAlyssa Rosenzweig <[email protected]>2019-03-14 22:47:11 +0000
commit23e01357235273994c5e7b8658d360c84fba30ff (patch)
treee07102c3aec6bf15bfe0078e5207cb9f2a23ad63 /src
parentc119c282af2fd9ae7f6e4039af684a72470639a0 (diff)
panfrost: Minor comment cleanup (version detection)
Signed-off-by: Alyssa Rosenzweig <[email protected]>
Diffstat (limited to 'src')
-rw-r--r--src/gallium/drivers/panfrost/pan_context.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/gallium/drivers/panfrost/pan_context.c b/src/gallium/drivers/panfrost/pan_context.c
index 48e471eace2..cb226cc2220 100644
--- a/src/gallium/drivers/panfrost/pan_context.c
+++ b/src/gallium/drivers/panfrost/pan_context.c
@@ -2408,8 +2408,9 @@ panfrost_create_context(struct pipe_screen *screen, void *priv, unsigned flags)
unsigned gpu_id;
gpu_id = pscreen->driver->query_gpu_version(pscreen);
- ctx->is_t6xx = gpu_id <= 0x0750; /* For now, this flag means t76x or less */
- ctx->require_sfbd = gpu_id < 0x0750; /* t76x is the first to support MFD */
+
+ ctx->is_t6xx = gpu_id <= 0x0750; /* For now, this flag means T760 or less */
+ ctx->require_sfbd = gpu_id < 0x0750; /* T760 is the first to support MFBD */
gallium->screen = screen;