Lines Matching defs:remote
113 struct device_node *ep, *remote;
115 /* Parses each endpoint and check if remote exists */
118 remote = of_graph_get_remote_port(ep);
119 if (remote) {
120 of_node_put(remote);
464 struct device_node *remote)
470 if (of_match_node(connectors_match, remote))
473 component_match_add(&pdev->dev, match, compare_of, remote);
475 for_each_endpoint_of_node(remote, ep) {
484 count += meson_probe_remote(pdev, match, remote, remote_node);
507 struct device_node *ep, *remote;
511 remote = of_graph_get_remote_port_parent(ep);
512 if (!remote || !of_device_is_available(remote)) {
513 of_node_put(remote);
517 count += meson_probe_remote(pdev, &match, np, remote);
518 of_node_put(remote);