diff options
author | Michael Ellerman <michael@ellerman.id.au> | 2007-06-04 09:00:02 -0400 |
---|---|---|
committer | Paul Mackerras <paulus@samba.org> | 2007-06-25 03:02:08 -0400 |
commit | e3855fa5540617877907ca61c36d28e18d0f2473 (patch) | |
tree | 7a1fb7d81837bcedfaba80f22aec724fb591e875 /include/asm-powerpc | |
parent | ee51de5645edee4124db6a479d2e135ebe436748 (diff) |
[POWERPC] Add for_each_compatible_node()
Signed-off-by: Michael Ellerman <michael@ellerman.id.au>
Acked-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Signed-off-by: Paul Mackerras <paulus@samba.org>
Diffstat (limited to 'include/asm-powerpc')
-rw-r--r-- | include/asm-powerpc/prom.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/asm-powerpc/prom.h b/include/asm-powerpc/prom.h index 6845af93ba91..1122a9278afd 100644 --- a/include/asm-powerpc/prom.h +++ b/include/asm-powerpc/prom.h | |||
@@ -124,6 +124,9 @@ extern struct device_node *of_find_node_by_type(struct device_node *from, | |||
124 | dn = of_find_node_by_type(dn, type)) | 124 | dn = of_find_node_by_type(dn, type)) |
125 | extern struct device_node *of_find_compatible_node(struct device_node *from, | 125 | extern struct device_node *of_find_compatible_node(struct device_node *from, |
126 | const char *type, const char *compat); | 126 | const char *type, const char *compat); |
127 | #define for_each_compatible_node(dn, type, compatible) \ | ||
128 | for (dn = of_find_compatible_node(NULL, type, compatible); dn; \ | ||
129 | dn = of_find_compatible_node(dn, type, compatible)) | ||
127 | extern struct device_node *of_find_node_by_path(const char *path); | 130 | extern struct device_node *of_find_node_by_path(const char *path); |
128 | extern struct device_node *of_find_node_by_phandle(phandle handle); | 131 | extern struct device_node *of_find_node_by_phandle(phandle handle); |
129 | extern struct device_node *of_find_all_nodes(struct device_node *prev); | 132 | extern struct device_node *of_find_all_nodes(struct device_node *prev); |