drm/msm: Make enable_eviction flag static
authorRob Clark <robdclark@chromium.org>
Sat, 25 Jun 2022 22:54:37 +0000 (15:54 -0700)
committerRob Clark <robdclark@chromium.org>
Thu, 7 Jul 2022 15:50:36 +0000 (08:50 -0700)
No need for it to be visible outside of this one src file.

Signed-off-by: Rob Clark <robdclark@chromium.org>
Patchwork: https://patchwork.freedesktop.org/patch/491219/
Link: https://lore.kernel.org/r/20220625225454.81039-3-robdclark@gmail.com
drivers/gpu/drm/msm/msm_gem_shrinker.c

index 086dacf2f26a74120f015a4d5f1ed93b9e0fdc1b..6e39d959b9f0f94a422c9559f58b655121978be9 100644 (file)
@@ -15,7 +15,7 @@
 /* Default disabled for now until it has some more testing on the different
  * iommu combinations that can be paired with the driver:
  */
-bool enable_eviction = false;
+static bool enable_eviction = false;
 MODULE_PARM_DESC(enable_eviction, "Enable swappable GEM buffers");
 module_param(enable_eviction, bool, 0600);