From: Jiaxing Wang Date: Sun, 22 Nov 2015 08:05:10 +0000 (+0800) Subject: debugfs: Add stub function for debugfs_create_automount(). X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=94e1dec7a9c111419fee328cf6f082059d8bd0f8;p=deliverable%2Flinux.git debugfs: Add stub function for debugfs_create_automount(). Add stub for debugfs_create_automount() for when debugfs is not configured in. Signed-off-by: Jiaxing Wang Signed-off-by: Greg Kroah-Hartman --- diff --git a/include/linux/debugfs.h b/include/linux/debugfs.h index 19c066dce1da..981e53ab84e8 100644 --- a/include/linux/debugfs.h +++ b/include/linux/debugfs.h @@ -162,6 +162,14 @@ static inline struct dentry *debugfs_create_symlink(const char *name, return ERR_PTR(-ENODEV); } +static inline struct dentry *debugfs_create_automount(const char *name, + struct dentry *parent, + struct vfsmount *(*f)(void *), + void *data) +{ + return ERR_PTR(-ENODEV); +} + static inline void debugfs_remove(struct dentry *dentry) { }