Searched refs:_pfx (Results 1 – 5 of 5) sorted by relevance
/openbmc/linux/include/linux/ |
H A D | configfs.h | 123 #define CONFIGFS_ATTR(_pfx, _name) \ argument 124 static struct configfs_attribute _pfx##attr_##_name = { \ 128 .show = _pfx##_name##_show, \ 129 .store = _pfx##_name##_store, \ 132 #define CONFIGFS_ATTR_RO(_pfx, _name) \ argument 133 static struct configfs_attribute _pfx##attr_##_name = { \ 137 .show = _pfx##_name##_show, \ 140 #define CONFIGFS_ATTR_WO(_pfx, _name) \ argument 141 static struct configfs_attribute _pfx##attr_##_name = { \ 145 .store = _pfx##_name##_store, \ [all …]
|
H A D | bitfield.h | 63 #define __BF_FIELD_CHECK(_mask, _reg, _val, _pfx) \ argument 66 _pfx "mask is not constant"); \ 67 BUILD_BUG_ON_MSG((_mask) == 0, _pfx "mask is zero"); \ 70 _pfx "value too large for the field"); \ 73 _pfx "type of reg too small for mask"); \
|
/openbmc/u-boot/include/linux/ |
H A D | bitfield.h | 51 #define __BF_FIELD_CHECK(_mask, _reg, _val, _pfx) \ argument 54 _pfx "mask is not constant"); \ 55 BUILD_BUG_ON_MSG(!(_mask), _pfx "mask is zero"); \ 58 _pfx "value too large for the field"); \ 60 _pfx "type of reg too small for mask"); \
|
/openbmc/linux/tools/include/linux/ |
H A 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"); \
|
/openbmc/linux/lib/ |
H A D | fault-inject.c | 324 #define CONFIGFS_ATTR_NAMED(_pfx, _name, _attr_name) \ argument 325 static struct configfs_attribute _pfx##attr_##_name = { \ 329 .show = _pfx##_name##_show, \ 330 .store = _pfx##_name##_store, \
|