diff options
author | Noralf Trønnes <noralf@tronnes.org> | 2018-07-03 18:03:51 +0200 |
---|---|---|
committer | Noralf Trønnes <noralf@tronnes.org> | 2018-07-10 14:53:35 +0200 |
commit | e896c132eb2cb4975d99477ea7e95aedb6dffa95 (patch) | |
tree | 2c3d7befcc54a7ca2de048b5ecfaed187becc44d /include/drm | |
parent | 894a677f4b3e6d2ab8d01bb46c1fbd5f92e4591b (diff) | |
download | linux-e896c132eb2cb4975d99477ea7e95aedb6dffa95.tar.gz linux-e896c132eb2cb4975d99477ea7e95aedb6dffa95.tar.bz2 linux-e896c132eb2cb4975d99477ea7e95aedb6dffa95.zip |
drm/debugfs: Add internal client debugfs file
Print the names of the internal clients currently attached.
Reviewed-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Signed-off-by: Noralf Trønnes <noralf@tronnes.org>
Link: https://patchwork.freedesktop.org/patch/msgid/20180703160354.59955-6-noralf@tronnes.org
Diffstat (limited to 'include/drm')
-rw-r--r-- | include/drm/drm_client.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/drm/drm_client.h b/include/drm/drm_client.h index 671052d80e38..989f8e52864d 100644 --- a/include/drm/drm_client.h +++ b/include/drm/drm_client.h @@ -10,6 +10,7 @@ struct drm_device; struct drm_file; struct drm_framebuffer; struct drm_gem_object; +struct drm_minor; struct module; /** @@ -133,4 +134,6 @@ struct drm_client_buffer * drm_client_framebuffer_create(struct drm_client_dev *client, u32 width, u32 height, u32 format); void drm_client_framebuffer_delete(struct drm_client_buffer *buffer); +int drm_client_debugfs_init(struct drm_minor *minor); + #endif |