diff options
author | Lionel Landwerlin <[email protected]> | 2019-10-15 16:24:33 +0300 |
---|---|---|
committer | Dylan Baker <[email protected]> | 2019-10-17 09:11:00 -0700 |
commit | ae4f5692321ba98400621eae5b4a410de704751b (patch) | |
tree | 21077fef4525cf5efba42aa92d64db988d5dfafd | |
parent | 9d13289ad4aeea9c3d7afeff2c162688111e9ab7 (diff) |
etnaviv: remove variable from global namespace
Found out by accident this was clashing with another driver.
Signed-off-by: Lionel Landwerlin <[email protected]>
Reviewed-by: Christian Gmeiner <[email protected]>
Reviewed-by: Kristian H. Kristensen <[email protected]>
Cc: <[email protected]>
(cherry picked from commit 701e0ac077074e0534fa744ffa48872b8740fbf2)
-rw-r--r-- | src/gallium/drivers/etnaviv/etnaviv_resource.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/etnaviv/etnaviv_resource.c b/src/gallium/drivers/etnaviv/etnaviv_resource.c index b03681cc5c0..124618ea4e4 100644 --- a/src/gallium/drivers/etnaviv/etnaviv_resource.c +++ b/src/gallium/drivers/etnaviv/etnaviv_resource.c @@ -402,7 +402,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, |