Lines Matching defs:node
28 struct device_node *node;
44 static void __init omapdss_update_prop(struct device_node *node, char *compat,
57 of_update_property(node, prop);
80 static void __init omapdss_omapify_node(struct device_node *node)
87 prop = of_find_property(node, "compatible", NULL);
106 omapdss_update_prop(node, new_compat, new_len);
109 static void __init omapdss_add_to_list(struct device_node *node, bool root)
113 n->node = node;
119 static bool __init omapdss_list_contains(const struct device_node *node)
124 if (n->node == node)
131 static void __init omapdss_walk_device(struct device_node *node, bool root)
135 omapdss_add_to_list(node, root);
139 * port/ports node. To avoid that, check first that there's the node.
141 n = of_get_child_by_name(node, "ports");
143 n = of_get_child_by_name(node, "port");
150 while ((n = of_graph_get_next_endpoint(node, n)) != NULL) {
216 if (of_match_node(omapdss_of_fixups_whitelist, n->node))
217 omapdss_omapify_node(n->node);
220 of_node_put(n->node);