• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 
debugfs_create_file(const char * name,mode_t mode,struct dentry * parent,void * data,const struct file_operations * fops)2 static 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 
debugfs_create_dir(const char * name,struct dentry * parent)9 static inline struct dentry *debugfs_create_dir(const char *name, struct dentry *parent)
10 {
11 	return NULL;
12 }
13 
14 
debugfs_remove(struct dentry * dentry)15 static inline void debugfs_remove(struct dentry *dentry) { }
16