Lines Matching defs:__space
104 #define DEBUGFS_ATTR(__space, __write) \
105 static int __space ## _open(struct inode *inode, struct file *file) \
107 return single_open(file, __space ## _show, inode->i_private); \
110 static const struct file_operations __space ## _fops = { \
112 .open = __space ## _open, \
119 #define DEBUGFS_ATTR_RO(__space) \
120 DEBUGFS_ATTR(__space, NULL)
122 #define DEBUGFS_ATTR_RW(__space) \
123 DEBUGFS_ATTR(__space, __space ## _write)