summaryrefslogtreecommitdiffstats
path: root/include/linux/debugfs.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/linux/debugfs.h')
-rw-r--r--include/linux/debugfs.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/linux/debugfs.h b/include/linux/debugfs.h
index 9d571acd3a48..7dff776e6d16 100644
--- a/include/linux/debugfs.h
+++ b/include/linux/debugfs.h
@@ -98,9 +98,10 @@ struct dentry *debugfs_create_dir(const char *name, struct dentry *parent);
98struct dentry *debugfs_create_symlink(const char *name, struct dentry *parent, 98struct dentry *debugfs_create_symlink(const char *name, struct dentry *parent,
99 const char *dest); 99 const char *dest);
100 100
101typedef struct vfsmount *(*debugfs_automount_t)(struct dentry *, void *);
101struct dentry *debugfs_create_automount(const char *name, 102struct dentry *debugfs_create_automount(const char *name,
102 struct dentry *parent, 103 struct dentry *parent,
103 struct vfsmount *(*f)(void *), 104 debugfs_automount_t f,
104 void *data); 105 void *data);
105 106
106void debugfs_remove(struct dentry *dentry); 107void debugfs_remove(struct dentry *dentry);