From 0e5601e6f3e528792ccb835e1541741a315b9d16 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alejandro=20Pi=C3=B1eiro?= Date: Tue, 28 Sep 2021 00:33:59 +0200 Subject: [PATCH] broadcom/common: remove unused debug helper Reviewed-by: Iago Toral Quiroga Part-of: --- src/broadcom/common/v3d_debug.h | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/broadcom/common/v3d_debug.h b/src/broadcom/common/v3d_debug.h index b5278c4c759..72d632568de 100644 --- a/src/broadcom/common/v3d_debug.h +++ b/src/broadcom/common/v3d_debug.h @@ -85,11 +85,6 @@ extern uint32_t V3D_DEBUG; #define dbg_printf(...) fprintf(stderr, __VA_ARGS__) #endif /* HAVE_ANDROID_PLATFORM */ -#define DBG(flag, ...) do { \ - if (unlikely(V3D_DEBUG & (flag))) \ - dbg_printf(__VA_ARGS__); \ -} while(0) - extern uint32_t v3d_debug_flag_for_shader_stage(gl_shader_stage stage); extern void v3d_process_debug_variable(void);