diff options
Diffstat (limited to 'src/gallium/drivers/vc4/vc4_tiling.h')
-rw-r--r-- | src/gallium/drivers/vc4/vc4_tiling.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/vc4/vc4_tiling.h b/src/gallium/drivers/vc4/vc4_tiling.h index 218130b2007..ba1ad6fb3f7 100644 --- a/src/gallium/drivers/vc4/vc4_tiling.h +++ b/src/gallium/drivers/vc4/vc4_tiling.h @@ -87,7 +87,7 @@ void vc4_store_tiled_image(void *dst, uint32_t dst_stride, * should extend this to have some runtime detection of being built for ARMv6 * on a Pi 2+. */ -#if defined(__ARM_ARCH) && __ARM_ARCH >= 7 +#if defined(__ARM_ARCH) && __ARM_ARCH == 7 #define NEON_SUFFIX(x) x ## _neon #else #define NEON_SUFFIX(x) x ## _base |