diff options
author | Lespiau, Damien <damien.lespiau@intel.com> | 2013-10-17 14:09:54 -0400 |
---|---|---|
committer | Dave Airlie <airlied@redhat.com> | 2013-11-05 21:04:49 -0500 |
commit | ff9befe8300d104de86fdb0d3f206ab36603f672 (patch) | |
tree | 8903e570bb20ac6e319927a12c32dbd1f0d47fd6 /include/drm | |
parent | 7d74795b740135b7c89269ce21be51cc5b328de6 (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.h | 21 |
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 { | |||
1004 | #define DRM_MINOR_CONTROL 2 | 1004 | #define DRM_MINOR_CONTROL 2 |
1005 | #define DRM_MINOR_RENDER 3 | 1005 | #define DRM_MINOR_RENDER 3 |
1006 | 1006 | ||
1007 | |||
1008 | /** | ||
1009 | * debugfs node list. This structure represents a debugfs file to | ||
1010 | * be created by the drm core | ||
1011 | */ | ||
1012 | struct drm_debugfs_list { | ||
1013 | const char *name; /** file name */ | ||
1014 | int (*show)(struct seq_file*, void*); /** show callback */ | ||
1015 | u32 driver_features; /**< Required driver features for this entry */ | ||
1016 | }; | ||
1017 | |||
1018 | /** | ||
1019 | * debugfs node structure. This structure represents a debugfs file. | ||
1020 | */ | ||
1021 | struct drm_debugfs_node { | ||
1022 | struct list_head list; | ||
1023 | struct drm_minor *minor; | ||
1024 | struct drm_debugfs_list *debugfs_ent; | ||
1025 | struct dentry *dent; | ||
1026 | }; | ||
1027 | |||
1028 | /** | 1007 | /** |
1029 | * Info file list entry. This structure represents a debugfs or proc file to | 1008 | * Info file list entry. This structure represents a debugfs or proc file to |
1030 | * be created by the drm core | 1009 | * be created by the drm core |