Module: Mesa Branch: main Commit: 48af341b36b6fc3c323a6b6d26ecfaf2b2cd74b2 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=48af341b36b6fc3c323a6b6d26ecfaf2b2cd74b2
Author: Icecream95 <[email protected]> Date: Mon Jul 12 20:33:55 2021 +1200 panfrost: Fix GPU ID for t76x in get_perf_config Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/11824> --- 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; _______________________________________________ mesa-commit mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/mesa-commit
