Lines Matching refs:matches
250 const struct of_device_id *matches,
322 const struct of_device_id *matches, const struct device_node *node);
415 const struct of_device_id *matches, in of_find_matching_node_and_match() argument
690 const struct of_device_id *matches) in of_find_matching_node() argument
692 return of_find_matching_node_and_match(from, matches, NULL); in of_find_matching_node()
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))