From 0df48e5d1f09c81bdbc9cc501c5a382c9175da33 Mon Sep 17 00:00:00 2001 From: John Stultz Date: Thu, 12 Mar 2020 21:21:50 +0000 Subject: [PATCH] vc4_bufmgr: Remove duplicative VC definition This is already defined in src/broadcom/cle/v3d_packet_helpers.h:42:9 And was causing build issues in AOSP when building with mmma Reviewed-by: Eric Anholt Signed-off-by: John Stultz Part-of: --- src/gallium/drivers/vc4/vc4_bufmgr.c | 8 -------- 1 file changed, 8 deletions(-) diff --git a/src/gallium/drivers/vc4/vc4_bufmgr.c b/src/gallium/drivers/vc4/vc4_bufmgr.c index 549c4f8..f7ac169 100644 --- a/src/gallium/drivers/vc4/vc4_bufmgr.c +++ b/src/gallium/drivers/vc4/vc4_bufmgr.c @@ -36,14 +36,6 @@ #include "vc4_context.h" #include "vc4_screen.h" -#ifdef HAVE_VALGRIND -#include -#include -#define VG(x) x -#else -#define VG(x) -#endif - static bool dump_stats = false; static void -- 2.7.4