diff options
author | Stephen Rothwell <sfr@canb.auug.org.au> | 2007-04-24 13:49:47 +1000 |
---|---|---|
committer | Paul Mackerras <paulus@samba.org> | 2007-04-24 22:08:58 +1000 |
commit | 112466b4d0036b3244509d01dbbf3c8caec52a23 (patch) | |
tree | 9f830c62109282feda1f4e479d8eb61ae21eac07 /arch | |
parent | 4bf56e1725a298fb430977cf143ad3a36c91b46a (diff) | |
download | op-kernel-dev-112466b4d0036b3244509d01dbbf3c8caec52a23.zip op-kernel-dev-112466b4d0036b3244509d01dbbf3c8caec52a23.tar.gz |
[POWERPC] Remove find_all_nodes
This old interface has no more users.
Signed-off-by: Stephen Rothwell <sfr@canb.auug.org.au>
Signed-off-by: Paul Mackerras <paulus@samba.org>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/powerpc/kernel/prom.c | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/arch/powerpc/kernel/prom.c b/arch/powerpc/kernel/prom.c index 2f7e6ec..911ec77 100644 --- a/arch/powerpc/kernel/prom.c +++ b/arch/powerpc/kernel/prom.c @@ -1110,23 +1110,6 @@ struct device_node *find_type_devices(const char *type) } EXPORT_SYMBOL(find_type_devices); -/** - * Returns all nodes linked together - */ -struct device_node *find_all_nodes(void) -{ - struct device_node *head, **prevp, *np; - - prevp = &head; - for (np = allnodes; np != 0; np = np->allnext) { - *prevp = np; - prevp = &np->next; - } - *prevp = NULL; - return head; -} -EXPORT_SYMBOL(find_all_nodes); - /** Checks if the given "compat" string matches one of the strings in * the device's "compatible" property */ |