diff options
Diffstat (limited to 'drivers/gpu/drm/tinydrm/mipi-dbi.c')
-rw-r--r-- | drivers/gpu/drm/tinydrm/mipi-dbi.c | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/drivers/gpu/drm/tinydrm/mipi-dbi.c b/drivers/gpu/drm/tinydrm/mipi-dbi.c index d43e992ab432..347f9b226f26 100644 --- a/drivers/gpu/drm/tinydrm/mipi-dbi.c +++ b/drivers/gpu/drm/tinydrm/mipi-dbi.c | |||
@@ -961,10 +961,6 @@ static const struct file_operations mipi_dbi_debugfs_command_fops = { | |||
961 | .write = mipi_dbi_debugfs_command_write, | 961 | .write = mipi_dbi_debugfs_command_write, |
962 | }; | 962 | }; |
963 | 963 | ||
964 | static const struct drm_info_list mipi_dbi_debugfs_list[] = { | ||
965 | { "fb", drm_fb_cma_debugfs_show, 0 }, | ||
966 | }; | ||
967 | |||
968 | /** | 964 | /** |
969 | * mipi_dbi_debugfs_init - Create debugfs entries | 965 | * mipi_dbi_debugfs_init - Create debugfs entries |
970 | * @minor: DRM minor | 966 | * @minor: DRM minor |
@@ -987,9 +983,7 @@ int mipi_dbi_debugfs_init(struct drm_minor *minor) | |||
987 | debugfs_create_file("command", mode, minor->debugfs_root, mipi, | 983 | debugfs_create_file("command", mode, minor->debugfs_root, mipi, |
988 | &mipi_dbi_debugfs_command_fops); | 984 | &mipi_dbi_debugfs_command_fops); |
989 | 985 | ||
990 | return drm_debugfs_create_files(mipi_dbi_debugfs_list, | 986 | return 0; |
991 | ARRAY_SIZE(mipi_dbi_debugfs_list), | ||
992 | minor->debugfs_root, minor); | ||
993 | } | 987 | } |
994 | EXPORT_SYMBOL(mipi_dbi_debugfs_init); | 988 | EXPORT_SYMBOL(mipi_dbi_debugfs_init); |
995 | 989 | ||