Lines Matching refs:dn

79 	struct device_node	*dn;  member
239 #define for_each_of_allnodes_from(from, dn) \ argument
240 for (dn = __of_find_all_nodes(from); dn; dn = __of_find_all_nodes(dn))
241 #define for_each_of_allnodes(dn) for_each_of_allnodes_from(NULL, dn) argument
316 #define for_each_property_of_node(dn, pp) \ argument
317 for (pp = dn->properties; pp != NULL; pp = pp->next)
378 bool of_console_check(struct device_node *dn, char *name, int index);
626 static inline bool of_console_check(const struct device_node *dn, const char *name, int index) in of_console_check() argument
883 #define for_each_node_by_name(dn, name) \ argument
884 for (dn = of_find_node_by_name(NULL, name); dn; \
885 dn = of_find_node_by_name(dn, name))
886 #define for_each_node_by_type(dn, type) \ argument
887 for (dn = of_find_node_by_type(NULL, type); dn; \
888 dn = of_find_node_by_type(dn, type))
889 #define for_each_compatible_node(dn, type, compatible) \ argument
890 for (dn = of_find_compatible_node(NULL, type, compatible); dn; \
891 dn = of_find_compatible_node(dn, type, compatible))
892 #define for_each_matching_node(dn, matches) \ argument
893 for (dn = of_find_matching_node(NULL, matches); dn; \
894 dn = of_find_matching_node(dn, matches))
895 #define for_each_matching_node_and_match(dn, matches, match) \ argument
896 for (dn = of_find_matching_node_and_match(NULL, matches, match); \
897 dn; dn = of_find_matching_node_and_match(dn, matches, match))
906 #define for_each_node_with_property(dn, prop_name) \ argument
907 for (dn = of_find_node_with_property(NULL, prop_name); dn; \
908 dn = of_find_node_with_property(dn, prop_name))