Home
last modified time | relevance | path

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

/Linux-v4.19/include/linux/
Dconfigfs.h139 #define CONFIGFS_ATTR(_pfx, _name) \ argument
140 static struct configfs_attribute _pfx##attr_##_name = { \
144 .show = _pfx##_name##_show, \
145 .store = _pfx##_name##_store, \
148 #define CONFIGFS_ATTR_RO(_pfx, _name) \ argument
149 static struct configfs_attribute _pfx##attr_##_name = { \
153 .show = _pfx##_name##_show, \
156 #define CONFIGFS_ATTR_WO(_pfx, _name) \ argument
157 static struct configfs_attribute _pfx##attr_##_name = { \
161 .store = _pfx##_name##_store, \
[all …]
Dbitfield.h52 #define __BF_FIELD_CHECK(_mask, _reg, _val, _pfx) \ argument
55 _pfx "mask is not constant"); \
56 BUILD_BUG_ON_MSG((_mask) == 0, _pfx "mask is zero"); \
59 _pfx "value too large for the field"); \
61 _pfx "type of reg too small for mask"); \