asahi: Remove ; in perf_debug_ctx

Otherwise `if(x) perf_debug_ctx(); else if (y) ...` doesn't work.

Signed-off-by: Alyssa Rosenzweig <alyssa@rosenzweig.io>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/23998>
This commit is contained in:
Alyssa Rosenzweig 2023-06-06 20:08:09 -04:00 committed by Marge Bot
parent b57faede71
commit 45cbe12282

View file

@ -571,7 +571,7 @@ agx_device(struct pipe_screen *p)
} while (0)
#define perf_debug_ctx(ctx, ...) \
perf_debug(agx_device((ctx)->base.screen), __VA_ARGS__);
perf_debug(agx_device((ctx)->base.screen), __VA_ARGS__)
struct agx_resource {
struct pipe_resource base;