Lines Matching refs:matches
249 const struct of_device_id *matches,
321 const struct of_device_id *matches, const struct device_node *node);
414 const struct of_device_id *matches, in of_find_matching_node_and_match() argument
684 const struct of_device_id *matches) in of_find_matching_node() argument
686 return of_find_matching_node_and_match(from, matches, NULL); in of_find_matching_node()
886 #define for_each_matching_node(dn, matches) \ argument
887 for (dn = of_find_matching_node(NULL, matches); dn; \
888 dn = of_find_matching_node(dn, matches))
889 #define for_each_matching_node_and_match(dn, matches, match) \ argument
890 for (dn = of_find_matching_node_and_match(NULL, matches, match); \
891 dn; dn = of_find_matching_node_and_match(dn, matches, match))