diff options
-rw-r--r-- | arch/powerpc/boot/flatdevtree.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/powerpc/boot/flatdevtree.c b/arch/powerpc/boot/flatdevtree.c index 02823a868b95..971420af08d4 100644 --- a/arch/powerpc/boot/flatdevtree.c +++ b/arch/powerpc/boot/flatdevtree.c | |||
@@ -36,7 +36,7 @@ static char *ft_root_node(struct ft_cxt *cxt) | |||
36 | 36 | ||
37 | /* Routines for keeping node ptrs returned by ft_find_device current */ | 37 | /* Routines for keeping node ptrs returned by ft_find_device current */ |
38 | /* First entry not used b/c it would return 0 and be taken as NULL/error */ | 38 | /* First entry not used b/c it would return 0 and be taken as NULL/error */ |
39 | static void *ft_node_add(struct ft_cxt *cxt, char *node) | 39 | static void *ft_get_phandle(struct ft_cxt *cxt, char *node) |
40 | { | 40 | { |
41 | unsigned int i; | 41 | unsigned int i; |
42 | 42 | ||
@@ -642,7 +642,7 @@ void *ft_find_device(struct ft_cxt *cxt, const char *srch_path) | |||
642 | if (srch_path[0] != '/') | 642 | if (srch_path[0] != '/') |
643 | return NULL; | 643 | return NULL; |
644 | node = ft_find_descendent(cxt, ft_root_node(cxt), srch_path); | 644 | node = ft_find_descendent(cxt, ft_root_node(cxt), srch_path); |
645 | return ft_node_add(cxt, node); | 645 | return ft_get_phandle(cxt, node); |
646 | } | 646 | } |
647 | 647 | ||
648 | void *ft_find_descendent(struct ft_cxt *cxt, void *top, const char *srch_path) | 648 | void *ft_find_descendent(struct ft_cxt *cxt, void *top, const char *srch_path) |