Lines Matching defs:matches
338 * @matches: match table for bus nodes
347 const struct of_device_id *matches,
393 if (!dev || !of_match_node(matches, bus))
398 rc = of_platform_bus_create(child, matches, lookup, &dev->dev, strict);
411 * @matches: match table for bus nodes
415 * unless the specified root itself matches the bus list and is not NULL.
418 const struct of_device_id *matches,
432 if (of_match_node(matches, root)) {
433 rc = of_platform_bus_create(root, matches, NULL, parent, false);
435 if (!of_match_node(matches, child))
437 rc = of_platform_bus_create(child, matches, NULL, parent, false);
452 * @matches: match table, NULL to use the default
461 * are selected by the @matches argument).
469 const struct of_device_id *matches,
485 rc = of_platform_bus_create(child, matches, lookup, parent, true);