From: Lionel Landwerlin Date: Tue, 15 Oct 2019 13:24:33 +0000 (+0300) Subject: etnaviv: remove variable from global namespace X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=701e0ac077074e0534fa744ffa48872b8740fbf2;p=mesa.git etnaviv: remove variable from global namespace Found out by accident this was clashing with another driver. Signed-off-by: Lionel Landwerlin Reviewed-by: Christian Gmeiner Reviewed-by: Kristian H. Kristensen Cc: --- diff --git a/src/gallium/drivers/etnaviv/etnaviv_resource.c b/src/gallium/drivers/etnaviv/etnaviv_resource.c index ff1bf2901a3..21943140f08 100644 --- a/src/gallium/drivers/etnaviv/etnaviv_resource.c +++ b/src/gallium/drivers/etnaviv/etnaviv_resource.c @@ -384,7 +384,7 @@ enum modifier_priority { MODIFIER_PRIORITY_SUPER_TILED, }; -const uint64_t priority_to_modifier[] = { +static const uint64_t priority_to_modifier[] = { [MODIFIER_PRIORITY_INVALID] = DRM_FORMAT_MOD_INVALID, [MODIFIER_PRIORITY_LINEAR] = DRM_FORMAT_MOD_LINEAR, [MODIFIER_PRIORITY_SPLIT_TILED] = DRM_FORMAT_MOD_VIVANTE_SPLIT_TILED,