提交 1c53a496 编写于 作者: S Scott Wood 提交者: Paul Mackerras

[POWERPC] bootwrapper: Rename ft_node_add() to ft_get_phandle().

This name better reflects what the function does, which is to
look up the phandle for an internal node pointer, and add it to the
internal pointer to phandle table if not found.
Signed-off-by: NScott Wood <scottwood@freescale.com>
Acked-by: NMark A. Greer <mgreer@mvista.com>
Acked-by: NDavid Gibson <david@gibson.dropbear.id.au>
Signed-off-by: NPaul Mackerras <paulus@samba.org>
上级 7c71c046
...@@ -36,7 +36,7 @@ static char *ft_root_node(struct ft_cxt *cxt) ...@@ -36,7 +36,7 @@ static char *ft_root_node(struct ft_cxt *cxt)
/* Routines for keeping node ptrs returned by ft_find_device current */ /* Routines for keeping node ptrs returned by ft_find_device current */
/* First entry not used b/c it would return 0 and be taken as NULL/error */ /* First entry not used b/c it would return 0 and be taken as NULL/error */
static void *ft_node_add(struct ft_cxt *cxt, char *node) static void *ft_get_phandle(struct ft_cxt *cxt, char *node)
{ {
unsigned int i; unsigned int i;
...@@ -642,7 +642,7 @@ void *ft_find_device(struct ft_cxt *cxt, const char *srch_path) ...@@ -642,7 +642,7 @@ void *ft_find_device(struct ft_cxt *cxt, const char *srch_path)
if (srch_path[0] != '/') if (srch_path[0] != '/')
return NULL; return NULL;
node = ft_find_descendent(cxt, ft_root_node(cxt), srch_path); node = ft_find_descendent(cxt, ft_root_node(cxt), srch_path);
return ft_node_add(cxt, node); return ft_get_phandle(cxt, node);
} }
void *ft_find_descendent(struct ft_cxt *cxt, void *top, const char *srch_path) void *ft_find_descendent(struct ft_cxt *cxt, void *top, const char *srch_path)
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册