Lines Matching refs:propname
183 char *propname = c->data; in check_is_string() local
185 prop = get_property(node, propname); in check_is_string()
192 #define WARNING_IF_NOT_STRING(nm, propname) \ argument
193 WARNING(nm, check_is_string, (propname))
194 #define ERROR_IF_NOT_STRING(nm, propname) \ argument
195 ERROR(nm, check_is_string, (propname))
202 char *propname = c->data; in check_is_string_list() local
205 prop = get_property(node, propname); in check_is_string_list()
221 #define WARNING_IF_NOT_STRING_LIST(nm, propname) \ argument
222 WARNING(nm, check_is_string_list, (propname))
223 #define ERROR_IF_NOT_STRING_LIST(nm, propname) \ argument
224 ERROR(nm, check_is_string_list, (propname))
230 char *propname = c->data; in check_is_cell() local
232 prop = get_property(node, propname); in check_is_cell()
239 #define WARNING_IF_NOT_CELL(nm, propname) \ argument
240 WARNING(nm, check_is_cell, (propname))
241 #define ERROR_IF_NOT_CELL(nm, propname) \ argument
242 ERROR(nm, check_is_cell, (propname))
444 struct node *node, const char *propname) in check_phandle_prop() argument
451 prop = get_property(node, propname); in check_phandle_prop()
1236 #define WARNING_PROPERTY_PHANDLE_CELLS(nm, propname, cells_name, ...) \ argument
1237 static struct provider nm##_provider = { (propname), (cells_name), __VA_ARGS__ }; \