aboutsummaryrefslogtreecommitdiff
path: root/include/drm
diff options
context:
space:
mode:
authorThomas Zimmermann <[email protected]>2020-06-05 09:32:47 +0200
committerThomas Zimmermann <[email protected]>2020-06-10 09:06:30 +0200
commitad0f449bebc79b01583c711684fefcdc9620320a (patch)
tree5ac3ded4be1e7b73582bd492cd1a0f6fbd82644d /include/drm
parent4a0042e08977f73ffb4272c0ec1d5baecab365e4 (diff)
drm: Remove struct drm_driver.gem_print_info
The .gem_print_info callback in struct drm_driver is obsolete and has no users left. Remove it. Signed-off-by: Thomas Zimmermann <[email protected]> Suggested-by: Emil Velikov <[email protected]> Reviewed-by: Emil Velikov <[email protected]> Reviewed-by: Laurent Pinchart <[email protected]> Link: https://patchwork.freedesktop.org/patch/msgid/[email protected]
Diffstat (limited to 'include/drm')
-rw-r--r--include/drm/drm_drv.h17
1 files changed, 0 insertions, 17 deletions
diff --git a/include/drm/drm_drv.h b/include/drm/drm_drv.h
index bb924cddc09c..8f110a28b6a2 100644
--- a/include/drm/drm_drv.h
+++ b/include/drm/drm_drv.h
@@ -354,23 +354,6 @@ struct drm_driver {
void (*gem_close_object) (struct drm_gem_object *, struct drm_file *);
/**
- * @gem_print_info:
- *
- * This callback is deprecated in favour of
- * &drm_gem_object_funcs.print_info.
- *
- * If driver subclasses struct &drm_gem_object, it can implement this
- * optional hook for printing additional driver specific info.
- *
- * drm_printf_indent() should be used in the callback passing it the
- * indent argument.
- *
- * This callback is called from drm_gem_print_info().
- */
- void (*gem_print_info)(struct drm_printer *p, unsigned int indent,
- const struct drm_gem_object *obj);
-
- /**
* @gem_create_object: constructor for gem objects
*
* Hook for allocating the GEM object struct, for use by the CMA and