Lines Matching refs:dn
98 struct device_node *dn; member
264 #define for_each_of_allnodes_from(from, dn) \ argument
265 for (dn = __of_find_all_nodes(from); dn; dn = __of_find_all_nodes(dn))
266 #define for_each_of_allnodes(dn) for_each_of_allnodes_from(NULL, dn) argument
357 #define for_each_property_of_node(dn, pp) \ argument
358 for (pp = dn->properties; pp != NULL; pp = pp->next)
437 bool of_console_check(struct device_node *dn, char *name, int index);
802 static inline bool of_console_check(const struct device_node *dn, const char *name, int index) in of_console_check() argument
1266 #define for_each_node_by_name(dn, name) \ argument
1267 for (dn = of_find_node_by_name(NULL, name); dn; \
1268 dn = of_find_node_by_name(dn, name))
1269 #define for_each_node_by_type(dn, type) \ argument
1270 for (dn = of_find_node_by_type(NULL, type); dn; \
1271 dn = of_find_node_by_type(dn, type))
1272 #define for_each_compatible_node(dn, type, compatible) \ argument
1273 for (dn = of_find_compatible_node(NULL, type, compatible); dn; \
1274 dn = of_find_compatible_node(dn, type, compatible))
1275 #define for_each_matching_node(dn, matches) \ argument
1276 for (dn = of_find_matching_node(NULL, matches); dn; \
1277 dn = of_find_matching_node(dn, matches))
1278 #define for_each_matching_node_and_match(dn, matches, match) \ argument
1279 for (dn = of_find_matching_node_and_match(NULL, matches, match); \
1280 dn; dn = of_find_matching_node_and_match(dn, matches, match))
1293 #define for_each_node_with_property(dn, prop_name) \ argument
1294 for (dn = of_find_node_with_property(NULL, prop_name); dn; \
1295 dn = of_find_node_with_property(dn, prop_name))