From b5b56f91f533fd9df846f401f6626ba52a1adeda Mon Sep 17 00:00:00 2001 From: Lionel Landwerlin Date: Thu, 15 Mar 2018 16:15:06 +0000 Subject: [PATCH] i965: silence unused function warning MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit [123/227] Compiling C object 'src/mesa/drivers/dri/i965/libi965_gen110@sta/genX_blorp_exec.c.o'. ../src/mesa/drivers/dri/i965/genX_blorp_exec.c:99:1: warning: ‘blorp_get_surface_base_address’ defined but not used [-Wunused-function] blorp_get_surface_base_address(struct blorp_batch *batch) ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Signed-off-by: Lionel Landwerlin Reviewed-by: Rafael Antognolli --- src/mesa/drivers/dri/i965/genX_blorp_exec.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mesa/drivers/dri/i965/genX_blorp_exec.c b/src/mesa/drivers/dri/i965/genX_blorp_exec.c index 53069e6fe23..3406a6fdec6 100644 --- a/src/mesa/drivers/dri/i965/genX_blorp_exec.c +++ b/src/mesa/drivers/dri/i965/genX_blorp_exec.c @@ -94,7 +94,7 @@ blorp_surface_reloc(struct blorp_batch *batch, uint32_t ss_offset, #endif } -#if GEN_GEN >= 7 +#if GEN_GEN >= 7 && GEN_GEN <= 10 static struct blorp_address blorp_get_surface_base_address(struct blorp_batch *batch) { -- 2.30.2