summaryrefslogtreecommitdiff
path: root/include/drm
diff options
context:
space:
mode:
authorLespiau, Damien <damien.lespiau@intel.com>2013-10-17 19:09:54 +0100
committerDave Airlie <airlied@redhat.com>2013-11-06 12:04:49 +1000
commitff9befe8300d104de86fdb0d3f206ab36603f672 (patch)
tree8903e570bb20ac6e319927a12c32dbd1f0d47fd6 /include/drm
parent7d74795b740135b7c89269ce21be51cc5b328de6 (diff)
drm: Remove drm_debugfs_node and drm_debugfs_list
Those structures are not used anywhere. Signed-off-by: Damien Lespiau <damien.lespiau@intel.com> Reviewed-by: Ville Syrjälä <ville.syrjala@linux.intel.com> Signed-off-by: Dave Airlie <airlied@redhat.com>
Diffstat (limited to 'include/drm')
-rw-r--r--include/drm/drmP.h21
1 files changed, 0 insertions, 21 deletions
diff --git a/include/drm/drmP.h b/include/drm/drmP.h
index 0da45d930c0a..444751b9aa89 100644
--- a/include/drm/drmP.h
+++ b/include/drm/drmP.h
@@ -1004,27 +1004,6 @@ struct drm_driver {
#define DRM_MINOR_CONTROL 2
#define DRM_MINOR_RENDER 3
-
-/**
- * debugfs node list. This structure represents a debugfs file to
- * be created by the drm core
- */
-struct drm_debugfs_list {
- const char *name; /** file name */
- int (*show)(struct seq_file*, void*); /** show callback */
- u32 driver_features; /**< Required driver features for this entry */
-};
-
-/**
- * debugfs node structure. This structure represents a debugfs file.
- */
-struct drm_debugfs_node {
- struct list_head list;
- struct drm_minor *minor;
- struct drm_debugfs_list *debugfs_ent;
- struct dentry *dent;
-};
-
/**
* Info file list entry. This structure represents a debugfs or proc file to
* be created by the drm core