Lines Matching refs:_name
132 #define CONFIGFS_ATTR(_pfx, _name) \ argument
133 static struct configfs_attribute _pfx##attr_##_name = { \
134 .ca_name = __stringify(_name), \
137 .show = _pfx##_name##_show, \
138 .store = _pfx##_name##_store, \
141 #define CONFIGFS_ATTR_RO(_pfx, _name) \ argument
142 static struct configfs_attribute _pfx##attr_##_name = { \
143 .ca_name = __stringify(_name), \
146 .show = _pfx##_name##_show, \
149 #define CONFIGFS_ATTR_WO(_pfx, _name) \ argument
150 static struct configfs_attribute _pfx##attr_##_name = { \
151 .ca_name = __stringify(_name), \
154 .store = _pfx##_name##_store, \