1 2static inline struct dentry *debugfs_create_file(const char *name, mode_t mode, 3 struct dentry *parent, void *data, 4 const struct file_operations *fops) 5{ 6 return NULL; 7} 8 9static inline struct dentry *debugfs_create_dir(const char *name, struct dentry *parent) 10{ 11 return NULL; 12} 13 14 15static inline void debugfs_remove(struct dentry *dentry) { } 16