aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/gpu/drm/drm_internal.h
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/gpu/drm/drm_internal.h')
-rw-r--r--drivers/gpu/drm/drm_internal.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/drivers/gpu/drm/drm_internal.h b/drivers/gpu/drm/drm_internal.h
index c9d5a6cd4d41..b72242e93ea4 100644
--- a/drivers/gpu/drm/drm_internal.h
+++ b/drivers/gpu/drm/drm_internal.h
@@ -111,6 +111,8 @@ int drm_gem_open_ioctl(struct drm_device *dev, void *data,
111 struct drm_file *file_priv); 111 struct drm_file *file_priv);
112void drm_gem_open(struct drm_device *dev, struct drm_file *file_private); 112void drm_gem_open(struct drm_device *dev, struct drm_file *file_private);
113void drm_gem_release(struct drm_device *dev, struct drm_file *file_private); 113void drm_gem_release(struct drm_device *dev, struct drm_file *file_private);
114void drm_gem_print_info(struct drm_printer *p, unsigned int indent,
115 const struct drm_gem_object *obj);
114 116
115/* drm_debugfs.c drm_debugfs_crc.c */ 117/* drm_debugfs.c drm_debugfs_crc.c */
116#if defined(CONFIG_DEBUG_FS) 118#if defined(CONFIG_DEBUG_FS)
@@ -178,3 +180,8 @@ int drm_syncobj_reset_ioctl(struct drm_device *dev, void *data,
178 struct drm_file *file_private); 180 struct drm_file *file_private);
179int drm_syncobj_signal_ioctl(struct drm_device *dev, void *data, 181int drm_syncobj_signal_ioctl(struct drm_device *dev, void *data,
180 struct drm_file *file_private); 182 struct drm_file *file_private);
183
184/* drm_framebuffer.c */
185void drm_framebuffer_print_info(struct drm_printer *p, unsigned int indent,
186 const struct drm_framebuffer *fb);
187int drm_framebuffer_debugfs_init(struct drm_minor *minor);