Lines Matching refs:name
32 * - Neither the name of Intel Corporation nor the names of its
52 #define DEBUGFS_SEQ_FILE_OPS(name) \
53 static const struct seq_operations _##name##_seq_ops = { \
54 .start = _##name##_seq_start, \
55 .next = _##name##_seq_next, \
56 .stop = _##name##_seq_stop, \
57 .show = _##name##_seq_show \
60 #define DEBUGFS_SEQ_FILE_OPEN(name) \
61 static int _##name##_open(struct inode *inode, struct file *s) \
65 ret = seq_open(s, &_##name##_seq_ops); \
73 #define DEBUGFS_FILE_OPS(name) \
74 static const struct file_operations _##name##_file_ops = { \
76 .open = _##name##_open, \