Home
last modified time | relevance | path

Searched refs:__fops (Results 1 – 4 of 4) sorted by relevance

/linux-6.1.9/include/linux/
Ddebugfs.h48 #define DEFINE_DEBUGFS_ATTRIBUTE_XSIGNED(__fops, __get, __set, __fmt, __is_signed) \ argument
49 static int __fops ## _open(struct inode *inode, struct file *file) \
54 static const struct file_operations __fops = { \
56 .open = __fops ## _open, \
63 #define DEFINE_DEBUGFS_ATTRIBUTE(__fops, __get, __set, __fmt) \ argument
64 DEFINE_DEBUGFS_ATTRIBUTE_XSIGNED(__fops, __get, __set, __fmt, false)
66 #define DEFINE_DEBUGFS_ATTRIBUTE_SIGNED(__fops, __get, __set, __fmt) \ argument
67 DEFINE_DEBUGFS_ATTRIBUTE_XSIGNED(__fops, __get, __set, __fmt, true)
Dfs.h3502 #define DEFINE_SIMPLE_ATTRIBUTE_XSIGNED(__fops, __get, __set, __fmt, __is_signed) \ argument
3503 static int __fops ## _open(struct inode *inode, struct file *file) \
3508 static const struct file_operations __fops = { \
3510 .open = __fops ## _open, \
3517 #define DEFINE_SIMPLE_ATTRIBUTE(__fops, __get, __set, __fmt) \ argument
3518 DEFINE_SIMPLE_ATTRIBUTE_XSIGNED(__fops, __get, __set, __fmt, false)
3520 #define DEFINE_SIMPLE_ATTRIBUTE_SIGNED(__fops, __get, __set, __fmt) \ argument
3521 DEFINE_SIMPLE_ATTRIBUTE_XSIGNED(__fops, __get, __set, __fmt, true)
/linux-6.1.9/drivers/thunderbolt/
Ddma_test.c358 #define DMA_TEST_DEBUGFS_ATTR(__fops, __get, __validate, __set) \ argument
359 static int __fops ## _show(void *data, u64 *val) \
372 static int __fops ## _store(void *data, u64 val) \
388 DEFINE_DEBUGFS_ATTRIBUTE(__fops ## _fops, __fops ## _show, \
389 __fops ## _store, "%llu\n")
/linux-6.1.9/arch/powerpc/platforms/cell/spufs/
Dfile.c141 #define DEFINE_SPUFS_SIMPLE_ATTRIBUTE(__fops, __get, __set, __fmt) \ argument
142 static int __fops ## _open(struct inode *inode, struct file *file) \
147 static const struct file_operations __fops = { \
148 .open = __fops ## _open, \