diff options
author | Noralf Trønnes <noralf@tronnes.org> | 2018-07-03 19:03:51 +0300 |
---|---|---|
committer | Noralf Trønnes <noralf@tronnes.org> | 2018-07-10 15:53:35 +0300 |
commit | e896c132eb2cb4975d99477ea7e95aedb6dffa95 (patch) | |
tree | 2c3d7befcc54a7ca2de048b5ecfaed187becc44d /drivers/gpu/drm/drm_debugfs.c | |
parent | 894a677f4b3e6d2ab8d01bb46c1fbd5f92e4591b (diff) | |
download | linux-e896c132eb2cb4975d99477ea7e95aedb6dffa95.tar.xz |
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 'drivers/gpu/drm/drm_debugfs.c')
-rw-r--r-- | drivers/gpu/drm/drm_debugfs.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/drivers/gpu/drm/drm_debugfs.c b/drivers/gpu/drm/drm_debugfs.c index b2482818fee8..50a20bfc07ea 100644 --- a/drivers/gpu/drm/drm_debugfs.c +++ b/drivers/gpu/drm/drm_debugfs.c @@ -28,6 +28,7 @@ #include <linux/slab.h> #include <linux/export.h> +#include <drm/drm_client.h> #include <drm/drm_debugfs.h> #include <drm/drm_edid.h> #include <drm/drm_atomic.h> @@ -164,6 +165,12 @@ int drm_debugfs_init(struct drm_minor *minor, int minor_id, DRM_ERROR("Failed to create framebuffer debugfs file\n"); return ret; } + + ret = drm_client_debugfs_init(minor); + if (ret) { + DRM_ERROR("Failed to create client debugfs file\n"); + return ret; + } } if (dev->driver->debugfs_init) { |