From 5a76ce6a6eedf6024764d7be49dc5fbd1bdf7371 Mon Sep 17 00:00:00 2001 From: Matt Turner Date: Tue, 11 Mar 2025 22:42:24 -0400 Subject: [PATCH] intel/isl: Remove ignored qualifier Reported by clang's `-Wignored-qualifiers`. Reviewed-by: Caio Oliveira Part-of: --- src/intel/isl/isl_genX_helpers.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/intel/isl/isl_genX_helpers.h b/src/intel/isl/isl_genX_helpers.h index 06f90e339a4..4788d23cd48 100644 --- a/src/intel/isl/isl_genX_helpers.h +++ b/src/intel/isl/isl_genX_helpers.h @@ -36,7 +36,7 @@ * Helpers for encoding SURFACE_STATE and XY_BLOCK_COPY_BLT commands. */ -UNUSED static const uint8_t +UNUSED static uint8_t isl_encode_halign(uint8_t halign) { switch (halign) { @@ -57,7 +57,7 @@ isl_encode_halign(uint8_t halign) } } -UNUSED static const uint8_t +UNUSED static uint8_t isl_encode_valign(uint8_t valign) { switch (valign) {