r600: replace MAYBE_UNUSED with specific #ifdef
authorEric Engestrom <eric.engestrom@intel.com>
Thu, 4 Jul 2019 13:28:10 +0000 (14:28 +0100)
committerEric Engestrom <eric.engestrom@intel.com>
Wed, 31 Jul 2019 08:41:05 +0000 (09:41 +0100)
Signed-off-by: Eric Engestrom <eric.engestrom@intel.com>
Reviewed-by: Matt Turner <mattst88@gmail.com>
src/gallium/drivers/r600/evergreen_compute.c

index dea01e48505db7eb8c701f05b978f667b10b7ec0..0dad0f04c1aa755c54a9a40afd5f22587b8ecad9 100644 (file)
@@ -84,13 +84,12 @@ writable images will consume TEX slots, VTX slots too because of linear indexing
 
 */
 
-MAYBE_UNUSED
+#ifdef HAVE_OPENCL
 static void radeon_shader_binary_init(struct r600_shader_binary *b)
 {
        memset(b, 0, sizeof(*b));
 }
 
-MAYBE_UNUSED
 static void radeon_shader_binary_clean(struct r600_shader_binary *b)
 {
        if (!b)
@@ -102,6 +101,7 @@ static void radeon_shader_binary_clean(struct r600_shader_binary *b)
        FREE(b->relocs);
        FREE(b->disasm_string);
 }
+#endif
 
 struct r600_resource *r600_compute_buffer_alloc_vram(struct r600_screen *screen,
                                                     unsigned size)