Lines Matching refs:name
66 #define MVM_DEBUGFS_READ_FILE_OPS(name) \ argument
67 static const struct file_operations iwl_dbgfs_##name##_ops = { \
68 .read = iwl_dbgfs_##name##_read, \
73 #define MVM_DEBUGFS_WRITE_WRAPPER(name, buflen, argtype) \ argument
74 static ssize_t _iwl_dbgfs_##name##_write(struct file *file, \
85 return iwl_dbgfs_##name##_write(arg, buf, buf_size, ppos); \
88 #define _MVM_DEBUGFS_READ_WRITE_FILE_OPS(name, buflen, argtype) \ argument
89 MVM_DEBUGFS_WRITE_WRAPPER(name, buflen, argtype) \
90 static const struct file_operations iwl_dbgfs_##name##_ops = { \
91 .write = _iwl_dbgfs_##name##_write, \
92 .read = iwl_dbgfs_##name##_read, \
97 #define _MVM_DEBUGFS_WRITE_FILE_OPS(name, buflen, argtype) \ argument
98 MVM_DEBUGFS_WRITE_WRAPPER(name, buflen, argtype) \
99 static const struct file_operations iwl_dbgfs_##name##_ops = { \
100 .write = _iwl_dbgfs_##name##_write, \