Lines Matching refs:propname
202 char *propname = c->data; in check_is_string() local
204 prop = get_property(node, propname); in check_is_string()
211 #define WARNING_IF_NOT_STRING(nm, propname) \ argument
212 WARNING(nm, check_is_string, (propname))
213 #define ERROR_IF_NOT_STRING(nm, propname) \ argument
214 ERROR(nm, check_is_string, (propname))
221 char *propname = c->data; in check_is_string_list() local
224 prop = get_property(node, propname); in check_is_string_list()
240 #define WARNING_IF_NOT_STRING_LIST(nm, propname) \ argument
241 WARNING(nm, check_is_string_list, (propname))
242 #define ERROR_IF_NOT_STRING_LIST(nm, propname) \ argument
243 ERROR(nm, check_is_string_list, (propname))
249 char *propname = c->data; in check_is_cell() local
251 prop = get_property(node, propname); in check_is_cell()
258 #define WARNING_IF_NOT_CELL(nm, propname) \ argument
259 WARNING(nm, check_is_cell, (propname))
260 #define ERROR_IF_NOT_CELL(nm, propname) \ argument
261 ERROR(nm, check_is_cell, (propname))
463 struct node *node, const char *propname) in check_phandle_prop() argument
470 prop = get_property(node, propname); in check_phandle_prop()
1455 #define WARNING_PROPERTY_PHANDLE_CELLS(nm, propname, cells_name, ...) \ argument
1456 static struct provider nm##_provider = { (propname), (cells_name), __VA_ARGS__ }; \