Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

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>

authored by

Lespiau, Damien and committed by
Dave Airlie
ff9befe8 7d74795b

-21
-21
include/drm/drmP.h
··· 1004 1004 #define DRM_MINOR_CONTROL 2 1005 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 1008 * Info file list entry. This structure represents a debugfs or proc file to 1030 1009 * be created by the drm core