Home
last modified time | relevance | path

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

/linux-4.4.14/include/linux/
Dconfigfs.h132 #define CONFIGFS_ATTR(_pfx, _name) \ argument
133 static struct configfs_attribute _pfx##attr_##_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 = { \
146 .show = _pfx##_name##_show, \
149 #define CONFIGFS_ATTR_WO(_pfx, _name) \ argument
150 static struct configfs_attribute _pfx##attr_##_name = { \
154 .store = _pfx##_name##_store, \