[PATCH 06/18] Make ft_node_add() accept and return NULL.
Scott Wood
scottwood at freescale.com
Thu Jan 25 08:07:09 EST 2007
Currently, if ft_node_add() is passed NULL it will allocate an entry for
it and return a non-NULL phandle. This patch makes it simply pass the
NULL through.
Signed-off-by: Scott Wood <scottwood at freescale.com>
---
arch/powerpc/boot/flatdevtree.c | 3 +++
1 files changed, 3 insertions(+), 0 deletions(-)
diff --git a/arch/powerpc/boot/flatdevtree.c b/arch/powerpc/boot/flatdevtree.c
index 78e179f..55b6699 100644
--- a/arch/powerpc/boot/flatdevtree.c
+++ b/arch/powerpc/boot/flatdevtree.c
@@ -40,6 +40,9 @@ static void *ft_node_add(struct ft_cxt *
{
unsigned int i;
+ if (!node)
+ return NULL;
+
for (i = 1; i < cxt->nodes_used; i++) /* already there? */
if (cxt->node_tbl[i] == node)
return (void *)i;
--
1.4.4
More information about the Linuxppc-dev
mailing list