Lines Matching defs:matches
364 * @matches: match table for bus nodes
373 const struct of_device_id *matches,
419 if (!dev || !of_match_node(matches, bus))
424 rc = of_platform_bus_create(child, matches, lookup, &dev->dev, strict);
437 * @matches: match table for bus nodes
441 * unless the specified root itself matches the bus list and is not NULL.
444 const struct of_device_id *matches,
458 if (of_match_node(matches, root)) {
459 rc = of_platform_bus_create(root, matches, NULL, parent, false);
461 if (!of_match_node(matches, child))
463 rc = of_platform_bus_create(child, matches, NULL, parent, false);
478 * @matches: match table, NULL to use the default
487 * are selected by the @matches argument).
495 const struct of_device_id *matches,
511 rc = of_platform_bus_create(child, matches, lookup, parent, true);