Home
last modified time | relevance | path

Searched refs:_pfx (Results 1 – 3 of 3) sorted by relevance

/linux/include/linux/
H A Dconfigfs.h123 #define CONFIGFS_ATTR_PERM(_pfx, _name, _perm) \ argument
124 static struct configfs_attribute _pfx##attr_##_name = { \
128 .show = _pfx##_name##_show, \
129 .store = _pfx##_name##_store, \
132 #define CONFIGFS_ATTR(_pfx, _name) CONFIGFS_ATTR_PERM( \ argument
133 _pfx, _name, S_IRUGO | S_IWUSR \
136 #define CONFIGFS_ATTR_RO(_pfx, _name) \ argument
137 static struct configfs_attribute _pfx##attr_##_name = { \
141 .show = _pfx##_name##_show, \
144 #define CONFIGFS_ATTR_WO(_pfx, _name) \ argument
[all …]
H A Dbitfield.h64 #define __BF_FIELD_CHECK_MASK(_mask, _val, _pfx) \ argument
67 _pfx "mask is not constant"); \
68 BUILD_BUG_ON_MSG((_mask) == 0, _pfx "mask is zero"); \
72 _pfx "value too large for the field"); \
/linux/tools/include/linux/
H A Dbitfield.h60 #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"); \