Searched refs:_pfx (Results 1 – 2 of 2) sorted by relevance
/include/linux/ |
D | configfs.h | 125 #define CONFIGFS_ATTR(_pfx, _name) \ argument 126 static struct configfs_attribute _pfx##attr_##_name = { \ 130 .show = _pfx##_name##_show, \ 131 .store = _pfx##_name##_store, \ 134 #define CONFIGFS_ATTR_RO(_pfx, _name) \ argument 135 static struct configfs_attribute _pfx##attr_##_name = { \ 139 .show = _pfx##_name##_show, \ 142 #define CONFIGFS_ATTR_WO(_pfx, _name) \ argument 143 static struct configfs_attribute _pfx##attr_##_name = { \ 147 .store = _pfx##_name##_store, \ [all …]
|
D | bitfield.h | 60 #define __BF_FIELD_CHECK(_mask, _reg, _val, _pfx) \ argument 63 _pfx "mask is not constant"); \ 64 BUILD_BUG_ON_MSG((_mask) == 0, _pfx "mask is zero"); \ 67 _pfx "value too large for the field"); \ 70 _pfx "type of reg too small for mask"); \
|