Lines Matching refs:propname
211 const char *propname = c->data; in check_is_string() local
213 prop = get_property(node, propname); in check_is_string()
220 #define WARNING_IF_NOT_STRING(nm, propname) \ argument
221 WARNING(nm, check_is_string, (propname))
222 #define ERROR_IF_NOT_STRING(nm, propname) \ argument
223 ERROR(nm, check_is_string, (propname))
230 const char *propname = c->data; in check_is_string_list() local
233 prop = get_property(node, propname); in check_is_string_list()
249 #define WARNING_IF_NOT_STRING_LIST(nm, propname) \ argument
250 WARNING(nm, check_is_string_list, (propname))
251 #define ERROR_IF_NOT_STRING_LIST(nm, propname) \ argument
252 ERROR(nm, check_is_string_list, (propname))
258 const char *propname = c->data; in check_is_cell() local
260 prop = get_property(node, propname); in check_is_cell()
267 #define WARNING_IF_NOT_CELL(nm, propname) \ argument
268 WARNING(nm, check_is_cell, (propname))
269 #define ERROR_IF_NOT_CELL(nm, propname) \ argument
270 ERROR(nm, check_is_cell, (propname))
487 struct node *node, const char *propname) in check_phandle_prop() argument
494 prop = get_property(node, propname); in check_phandle_prop()
1479 #define WARNING_PROPERTY_PHANDLE_CELLS(nm, propname, cells_name, ...) \ argument
1480 static struct provider nm##_provider = { (propname), (cells_name), __VA_ARGS__ }; \