Lines Matching refs:dn

100 	struct device_node	*dn;  member
272 #define for_each_of_allnodes_from(from, dn) \ argument
273 for (dn = __of_find_all_nodes(from); dn; dn = __of_find_all_nodes(dn))
274 #define for_each_of_allnodes(dn) for_each_of_allnodes_from(NULL, dn) argument
361 #define for_each_property_of_node(dn, pp) \ argument
362 for (pp = dn->properties; pp != NULL; pp = pp->next)
554 bool of_console_check(struct device_node *dn, char *name, int index);
906 static inline bool of_console_check(const struct device_node *dn, const char *name, int index) in of_console_check() argument
1208 #define for_each_node_by_name(dn, name) \ argument
1209 for (dn = of_find_node_by_name(NULL, name); dn; \
1210 dn = of_find_node_by_name(dn, name))
1211 #define for_each_node_by_type(dn, type) \ argument
1212 for (dn = of_find_node_by_type(NULL, type); dn; \
1213 dn = of_find_node_by_type(dn, type))
1214 #define for_each_compatible_node(dn, type, compatible) \ argument
1215 for (dn = of_find_compatible_node(NULL, type, compatible); dn; \
1216 dn = of_find_compatible_node(dn, type, compatible))
1217 #define for_each_matching_node(dn, matches) \ argument
1218 for (dn = of_find_matching_node(NULL, matches); dn; \
1219 dn = of_find_matching_node(dn, matches))
1220 #define for_each_matching_node_and_match(dn, matches, match) \ argument
1221 for (dn = of_find_matching_node_and_match(NULL, matches, match); \
1222 dn; dn = of_find_matching_node_and_match(dn, matches, match))
1231 #define for_each_node_with_property(dn, prop_name) \ argument
1232 for (dn = of_find_node_with_property(NULL, prop_name); dn; \
1233 dn = of_find_node_with_property(dn, prop_name))