/include/linux/ |
D | hwmon-sysfs.h | 23 #define SENSOR_ATTR_RO(_name, _func, _index) \ argument 24 SENSOR_ATTR(_name, 0444, _func##_show, NULL, _index) 26 #define SENSOR_ATTR_RW(_name, _func, _index) \ argument 27 SENSOR_ATTR(_name, 0644, _func##_show, _func##_store, _index) 29 #define SENSOR_ATTR_WO(_name, _func, _index) \ argument 30 SENSOR_ATTR(_name, 0200, NULL, _func##_store, _index) 36 #define SENSOR_DEVICE_ATTR_RO(_name, _func, _index) \ argument 37 SENSOR_DEVICE_ATTR(_name, 0444, _func##_show, NULL, _index) 39 #define SENSOR_DEVICE_ATTR_RW(_name, _func, _index) \ argument 40 SENSOR_DEVICE_ATTR(_name, 0644, _func##_show, _func##_store, _index) [all …]
|
D | workqueue.h | 236 #define __INIT_WORK(_work, _func, _onstack) \ argument 244 (_work)->func = (_func); \ 247 #define __INIT_WORK(_work, _func, _onstack) \ argument 252 (_work)->func = (_func); \ 256 #define INIT_WORK(_work, _func) \ argument 257 __INIT_WORK((_work), (_func), 0) 259 #define INIT_WORK_ONSTACK(_work, _func) \ argument 260 __INIT_WORK((_work), (_func), 1) 262 #define __INIT_DELAYED_WORK(_work, _func, _tflags) \ argument 264 INIT_WORK(&(_work)->work, (_func)); \ [all …]
|
D | interrupt.h | 605 #define DECLARE_TASKLET_OLD(name, _func) \ argument 608 .func = _func, \ 611 #define DECLARE_TASKLET_DISABLED_OLD(name, _func) \ argument 614 .func = _func, \
|
D | ide.h | 915 #define ide_devset_rw(_name, _func) \ argument 916 IDE_DEVSET(_name, 0, get_##_func, set_##_func) 918 #define ide_devset_w(_name, _func) \ argument 919 IDE_DEVSET(_name, 0, NULL, set_##_func) 921 #define ide_ext_devset_rw(_name, _func) \ argument 922 __IDE_DEVSET(_name, 0, get_##_func, set_##_func) 924 #define ide_ext_devset_rw_sync(_name, _func) \ argument 925 __IDE_DEVSET(_name, DS_SYNC, get_##_func, set_##_func)
|
/include/drm/ |
D | drm_ioctl.h | 162 #define DRM_IOCTL_DEF_DRV(ioctl, _func, _flags) \ argument 165 .func = _func, \
|
/include/dt-bindings/pinctrl/ |
D | rzn1-pinctrl.h | 9 #define RZN1_PINMUX(_gpio, _func) \ argument 10 (((_func) << 8) | (_gpio))
|
/include/rdma/ |
D | uverbs_ioctl.h | 392 #define DECLARE_UVERBS_WRITE(_command_num, _func, _cmd_desc, ...) \ argument 397 .func_write = _func, \ 403 #define DECLARE_UVERBS_WRITE_EX(_command_num, _func, _cmd_desc, ...) \ argument 408 .func_write = _func, \ 444 #define UAPI_DEF_IS_OBJ_SUPPORTED(_func) \ argument 447 .scope = UAPI_SCOPE_OBJECT, .func_is_supported = _func, \
|