Lines Matching refs:propname
210 char *propname = c->data; in check_is_string() local
212 prop = get_property(node, propname); in check_is_string()
219 #define WARNING_IF_NOT_STRING(nm, propname) \ argument
220 WARNING(nm, check_is_string, (propname))
221 #define ERROR_IF_NOT_STRING(nm, propname) \ argument
222 ERROR(nm, check_is_string, (propname))
229 char *propname = c->data; in check_is_string_list() local
232 prop = get_property(node, propname); in check_is_string_list()
248 #define WARNING_IF_NOT_STRING_LIST(nm, propname) \ argument
249 WARNING(nm, check_is_string_list, (propname))
250 #define ERROR_IF_NOT_STRING_LIST(nm, propname) \ argument
251 ERROR(nm, check_is_string_list, (propname))
257 char *propname = c->data; in check_is_cell() local
259 prop = get_property(node, propname); in check_is_cell()
266 #define WARNING_IF_NOT_CELL(nm, propname) \ argument
267 WARNING(nm, check_is_cell, (propname))
268 #define ERROR_IF_NOT_CELL(nm, propname) \ argument
269 ERROR(nm, check_is_cell, (propname))
486 struct node *node, const char *propname) in check_phandle_prop() argument
493 prop = get_property(node, propname); in check_phandle_prop()
1477 #define WARNING_PROPERTY_PHANDLE_CELLS(nm, propname, cells_name, ...) \ argument
1478 static struct provider nm##_provider = { (propname), (cells_name), __VA_ARGS__ }; \