diff mbox series

[i-g-t] lib: Unexport gem_gtt_type()

Message ID 20180926131353.11063-1-chris@chris-wilson.co.uk (mailing list archive)
State New, archived
Headers show
Series [i-g-t] lib: Unexport gem_gtt_type() | expand

Commit Message

Chris Wilson Sept. 26, 2018, 1:13 p.m. UTC
Nobody uses the function directly, instead using the various helpers to
determine if ppgtt is present.

Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Cc: Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
---
 lib/ioctl_wrappers.c | 5 ++---
 lib/ioctl_wrappers.h | 1 -
 2 files changed, 2 insertions(+), 4 deletions(-)

Comments

Joonas Lahtinen Sept. 26, 2018, 2:54 p.m. UTC | #1
Quoting Chris Wilson (2018-09-26 16:13:53)
> Nobody uses the function directly, instead using the various helpers to
> determine if ppgtt is present.
> 
> Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
> Cc: Joonas Lahtinen <joonas.lahtinen@linux.intel.com>

Reviewed-by: Joonas Lahtinen <joonas.lahtinen@linux.intel.com>

Regards, Joonas
diff mbox series

Patch

diff --git a/lib/ioctl_wrappers.c b/lib/ioctl_wrappers.c
index d992e015b..0929c43fe 100644
--- a/lib/ioctl_wrappers.c
+++ b/lib/ioctl_wrappers.c
@@ -954,12 +954,11 @@  bool gem_bo_busy(int fd, uint32_t handle)
  * Feature test macro to check what type of gtt is being used by the kernel:
  * 0 - global gtt
  * 1 - aliasing ppgtt
- * 2 - full ppgtt, limited to 32bit address space
- * 3 - full ppgtt, 64bit address space
+ * 2 - full ppgtt
  *
  * Returns: Type of gtt being used.
  */
-int gem_gtt_type(int fd)
+static int gem_gtt_type(int fd)
 {
 	struct drm_i915_getparam gp;
 	int val = 0;
diff --git a/lib/ioctl_wrappers.h b/lib/ioctl_wrappers.h
index 872e30563..c4e1956c5 100644
--- a/lib/ioctl_wrappers.h
+++ b/lib/ioctl_wrappers.h
@@ -147,7 +147,6 @@  bool gem_has_bsd(int fd);
 bool gem_has_blt(int fd);
 bool gem_has_vebox(int fd);
 bool gem_has_bsd2(int fd);
-int gem_gtt_type(int fd);
 bool gem_uses_ppgtt(int fd);
 bool gem_uses_full_ppgtt(int fd);
 int gem_gpu_reset_type(int fd);