aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorDavid S. Miller <davem@sunset.davemloft.net>2006-06-21 19:33:54 -0400
committerDavid S. Miller <davem@sunset.davemloft.net>2006-06-24 02:15:04 -0400
commitaaf7cec2769942035985716452107fc5ba0b11f6 (patch)
tree4f4bc5278ef41e016b97b6860d30fa773db7fee2 /include
parent372b07bb5a13f8a1b8a3ce49cd76d39a79dbd3bd (diff)
[SPARC64]: Add of_find_node_by_{name,type}().
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include')
-rw-r--r--include/asm-sparc64/prom.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/include/asm-sparc64/prom.h b/include/asm-sparc64/prom.h
index 44bcc83267f3..eb75d3cbcf4c 100644
--- a/include/asm-sparc64/prom.h
+++ b/include/asm-sparc64/prom.h
@@ -65,6 +65,16 @@ static inline void set_node_proc_entry(struct device_node *dn, struct proc_dir_e
65 dn->pde = de; 65 dn->pde = de;
66} 66}
67 67
68extern struct device_node *of_find_node_by_name(struct device_node *from,
69 const char *name);
70#define for_each_node_by_name(dn, name) \
71 for (dn = of_find_node_by_name(NULL, name); dn; \
72 dn = of_find_node_by_name(dn, name))
73extern struct device_node *of_find_node_by_type(struct device_node *from,
74 const char *type);
75#define for_each_node_by_type(dn, type) \
76 for (dn = of_find_node_by_type(NULL, type); dn; \
77 dn = of_find_node_by_type(dn, type))
68extern struct device_node *of_find_node_by_path(const char *path); 78extern struct device_node *of_find_node_by_path(const char *path);
69extern struct device_node *of_get_parent(const struct device_node *node); 79extern struct device_node *of_get_parent(const struct device_node *node);
70extern struct device_node *of_get_next_child(const struct device_node *node, 80extern struct device_node *of_get_next_child(const struct device_node *node,