From 48af341b36b6fc3c323a6b6d26ecfaf2b2cd74b2 Mon Sep 17 00:00:00 2001 From: Icecream95 Date: Mon, 12 Jul 2021 20:33:55 +1200 Subject: [PATCH] panfrost: Fix GPU ID for t76x in get_perf_config Part-of: --- src/panfrost/perf/pan_perf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/panfrost/perf/pan_perf.c b/src/panfrost/perf/pan_perf.c index 44e11af15a8..f20a81b2238 100644 --- a/src/panfrost/perf/pan_perf.c +++ b/src/panfrost/perf/pan_perf.c @@ -53,7 +53,7 @@ get_perf_config(unsigned int gpu_id) switch (gpu_id) { case 0x720: return &panfrost_perf_config_t72x; - case 0x760: + case 0x750: return &panfrost_perf_config_t76x; case 0x820: return &panfrost_perf_config_t82x;