• Home
  • Raw
  • Download

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);
809 static inline bool of_console_check(const struct device_node *dn, const char *name, int index) in of_console_check() argument
1273 #define for_each_node_by_name(dn, name) \ argument
1274 for (dn = of_find_node_by_name(NULL, name); dn; \
1275 dn = of_find_node_by_name(dn, name))
1276 #define for_each_node_by_type(dn, type) \ argument
1277 for (dn = of_find_node_by_type(NULL, type); dn; \
1278 dn = of_find_node_by_type(dn, type))
1279 #define for_each_compatible_node(dn, type, compatible) \ argument
1280 for (dn = of_find_compatible_node(NULL, type, compatible); dn; \
1281 dn = of_find_compatible_node(dn, type, compatible))
1282 #define for_each_matching_node(dn, matches) \ argument
1283 for (dn = of_find_matching_node(NULL, matches); dn; \
1284 dn = of_find_matching_node(dn, matches))
1285 #define for_each_matching_node_and_match(dn, matches, match) \ argument
1286 for (dn = of_find_matching_node_and_match(NULL, matches, match); \
1287 dn; dn = of_find_matching_node_and_match(dn, matches, match))
1300 #define for_each_node_with_property(dn, prop_name) \ argument
1301 for (dn = of_find_node_with_property(NULL, prop_name); dn; \
1302 dn = of_find_node_with_property(dn, prop_name))