/linux-6.3-rc2/include/linux/ |
A D | hwmon-sysfs.h | 24 #define SENSOR_ATTR_RO(_name, _func, _index) \ argument 25 SENSOR_ATTR(_name, 0444, _func##_show, NULL, _index) 27 #define SENSOR_ATTR_RW(_name, _func, _index) \ argument 28 SENSOR_ATTR(_name, 0644, _func##_show, _func##_store, _index) 30 #define SENSOR_ATTR_WO(_name, _func, _index) \ argument 31 SENSOR_ATTR(_name, 0200, NULL, _func##_store, _index) 37 #define SENSOR_DEVICE_ATTR_RO(_name, _func, _index) \ argument 40 #define SENSOR_DEVICE_ATTR_RW(_name, _func, _index) \ argument 41 SENSOR_DEVICE_ATTR(_name, 0644, _func##_show, _func##_store, _index) 63 SENSOR_ATTR_2(_name, 0644, _func##_show, _func##_store, _nr, _index) [all …]
|
A D | static_call.h | 186 DECLARE_STATIC_CALL(name, _func); \ 188 .func = _func, \ 194 DECLARE_STATIC_CALL(name, _func); \ 202 DECLARE_STATIC_CALL(name, _func); \ 231 DECLARE_STATIC_CALL(name, _func); \ 233 .func = _func, \ 238 DECLARE_STATIC_CALL(name, _func); \ 245 DECLARE_STATIC_CALL(name, _func); \ 292 DECLARE_STATIC_CALL(name, _func); \ 298 __DEFINE_STATIC_CALL(name, _func, _func) [all …]
|
A D | workqueue.h | 232 (_work)->func = (_func); \ 240 (_work)->func = (_func); \ 244 #define INIT_WORK(_work, _func) \ argument 245 __INIT_WORK((_work), (_func), 0) 247 #define INIT_WORK_ONSTACK(_work, _func) \ argument 248 __INIT_WORK((_work), (_func), 1) 252 INIT_WORK(&(_work)->work, (_func)); \ 267 __INIT_DELAYED_WORK(_work, _func, 0) 278 #define INIT_RCU_WORK(_work, _func) \ argument 279 INIT_WORK(&(_work)->work, (_func)) [all …]
|
A D | irq_work.h | 23 #define __IRQ_WORK_INIT(_func, _flags) (struct irq_work){ \ argument 25 .func = (_func), \ 29 #define IRQ_WORK_INIT(_func) __IRQ_WORK_INIT(_func, 0) argument 30 #define IRQ_WORK_INIT_LAZY(_func) __IRQ_WORK_INIT(_func, IRQ_WORK_LAZY) argument 31 #define IRQ_WORK_INIT_HARD(_func) __IRQ_WORK_INIT(_func, IRQ_WORK_HARD_IRQ) argument
|
A D | smp.h | 29 #define CSD_INIT(_func, _info) \ argument 30 (struct __call_single_data){ .func = (_func), .info = (_info), } 36 #define INIT_CSD(_csd, _func, _info) \ argument 38 *(_csd) = CSD_INIT((_func), (_info)); \
|
A D | interrupt.h | 668 #define DECLARE_TASKLET_OLD(name, _func) \ argument 671 .func = _func, \ 674 #define DECLARE_TASKLET_DISABLED_OLD(name, _func) \ argument 677 .func = _func, \
|
/linux-6.3-rc2/drivers/pinctrl/ralink/ |
A D | pinctrl-ralink.h | 12 #define GRP(_name, _func, _mask, _shift) \ argument 14 .func = _func, .gpio = _mask, \ 15 .func_count = ARRAY_SIZE(_func) } 17 #define GRP_G(_name, _func, _mask, _gpio, _shift) \ argument 19 .func = _func, .gpio = _gpio, \ 20 .func_count = ARRAY_SIZE(_func) }
|
/linux-6.3-rc2/drivers/pinctrl/mvebu/ |
A D | pinctrl-mvebu.h | 133 #define MPP_FUNC_CTRL(_idl, _idh, _name, _func) \ argument 139 .mpp_get = _func ## _get, \ 140 .mpp_set = _func ## _set, \ 145 #define MPP_FUNC_GPIO_CTRL(_idl, _idh, _name, _func) \ argument 151 .mpp_get = _func ## _get, \ 152 .mpp_set = _func ## _set, \ 153 .mpp_gpio_req = _func ## _gpio_req, \ 154 .mpp_gpio_dir = _func ## _gpio_dir, \
|
/linux-6.3-rc2/scripts/tracing/ |
A D | draw_functrace.py | 36 self._func = func 60 while tree != CallTree.ROOT and tree._func != func: 72 s = "%s----%s (%s)\n" % (branch, self._func, self._time) 74 s = "%s----%s\n" % (branch, self._func)
|
/linux-6.3-rc2/net/ieee802154/ |
A D | ieee802154.h | 11 #define IEEE802154_OP(_cmd, _func) \ argument 14 .doit = _func, \ 19 #define IEEE802154_DUMP(_cmd, _func, _dump) \ argument 22 .doit = _func, \
|
/linux-6.3-rc2/drivers/net/ethernet/mellanox/mlxsw/ |
A D | core.h | 127 #define __MLXSW_RXL(_func, _trap_id, _en_action, _is_ctrl, _en_trap_group, \ argument 134 .func = _func, \ 147 #define MLXSW_RXL(_func, _trap_id, _en_action, _is_ctrl, _trap_group, \ argument 149 __MLXSW_RXL(_func, _trap_id, _en_action, _is_ctrl, _trap_group, \ 154 __MLXSW_RXL(_func, _trap_id, _en_action, _is_ctrl, _en_trap_group, \ 157 #define MLXSW_RXL_MIRROR(_func, _session_id, _trap_group, _mirror_reason) \ argument 158 __MLXSW_RXL(_func, MIRROR_SESSION##_session_id, TRAP_TO_CPU, false, \ 162 #define MLXSW_EVENTL(_func, _trap_id, _trap_group) \ argument 167 .func = _func, \ 176 #define MLXSW_CORE_EVENTL(_func, _trap_id) \ argument [all …]
|
/linux-6.3-rc2/drivers/staging/rtl8723bs/hal/ |
A D | odm_interface.h | 32 #define _cat(_name, _ic_type, _func) _func##_11N(_name) argument
|
/linux-6.3-rc2/include/drm/ |
A D | drm_ioctl.h | 162 #define DRM_IOCTL_DEF_DRV(ioctl, _func, _flags) \ argument 165 .func = _func, \
|
/linux-6.3-rc2/drivers/perf/arm_cspmu/ |
A D | arm_cspmu.h | 23 #define ARM_CSPMU_EXT_ATTR(_name, _func, _config) \ argument 26 .attr = __ATTR(_name, 0444, _func, NULL), \
|
/linux-6.3-rc2/include/dt-bindings/pinctrl/ |
A D | rzn1-pinctrl.h | 9 #define RZN1_PINMUX(_gpio, _func) \ argument 10 (((_func) << 8) | (_gpio))
|
/linux-6.3-rc2/drivers/perf/hisilicon/ |
A D | hisi_uncore_pmu.h | 30 #define HISI_PMU_ATTR(_name, _func, _config) \ argument 32 { __ATTR(_name, 0444, _func, NULL), (void *)_config } \
|
/linux-6.3-rc2/include/rdma/ |
A D | uverbs_ioctl.h | 366 #define DECLARE_UVERBS_WRITE(_command_num, _func, _cmd_desc, ...) \ argument 371 .func_write = _func, \ 377 #define DECLARE_UVERBS_WRITE_EX(_command_num, _func, _cmd_desc, ...) \ argument 382 .func_write = _func, \ 418 #define UAPI_DEF_IS_OBJ_SUPPORTED(_func) \ argument 421 .scope = UAPI_SCOPE_OBJECT, .func_is_supported = _func, \
|
/linux-6.3-rc2/drivers/gpu/drm/ |
A D | drm_ioctl.c | 555 #define DRM_IOCTL_DEF(ioctl, _func, _flags) \ argument 558 .func = _func, \ 564 #define DRM_LEGACY_IOCTL_DEF(ioctl, _func, _flags) DRM_IOCTL_DEF(ioctl, _func, _flags) argument 566 #define DRM_LEGACY_IOCTL_DEF(ioctl, _func, _flags) DRM_IOCTL_DEF(ioctl, drm_invalid_op, _flags) argument
|
/linux-6.3-rc2/Documentation/userspace-api/media/v4l/ |
A D | func-close.rst | 4 .. _func-close:
|
A D | func-munmap.rst | 4 .. _func-munmap:
|
A D | func-ioctl.rst | 4 .. _func-ioctl:
|
A D | func-write.rst | 4 .. _func-write:
|
/linux-6.3-rc2/drivers/soc/sunxi/ |
A D | sunxi_sram.c | 44 #define SUNXI_SRAM_MAP(_reg_val, _val, _func) \ argument 46 .func = _func, \
|
/linux-6.3-rc2/tools/testing/selftests/bpf/prog_tests/ |
A D | user_ringbuf.c | 664 #define SUCCESS_TEST(_func) { _func, #_func } argument
|
/linux-6.3-rc2/drivers/gpu/drm/i915/gt/ |
A D | intel_gt_sysfs_pm.c | 102 u32 val = sysfs_gt_attribute_r_##_attr_type##_func(kobj, attr, \ 118 #define INTEL_GT_SYSFS_STORE(_name, _func) \ argument 130 ret = sysfs_gt_attribute_w_func(kobj, attr, _func, val); \
|