diff options
author | Gerald Van Baren | 2007-06-06 22:47:58 -0400 |
---|---|---|
committer | Gerald Van Baren | 2007-08-10 19:21:36 -0400 |
commit | 1a861169bc3758f9de3aead62b058736c6891246 (patch) | |
tree | b47acfbd51b061bc502c7e0783dc346e0b64319d /libfdt | |
parent | addd8ce83078c25f0eca5f23adbdfc64ca50a243 (diff) |
Replace fdt_node_offset() with fdt_find_node_by_path().
The new name matches more closely the kernel's name, which is also
a much better description.
Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
Acked-by: Gerald Van Baren <vanbaren@cideas.com>
Diffstat (limited to 'libfdt')
-rw-r--r-- | libfdt/fdt_ro.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libfdt/fdt_ro.c b/libfdt/fdt_ro.c index defe59c65e5..1a03109e812 100644 --- a/libfdt/fdt_ro.c +++ b/libfdt/fdt_ro.c @@ -132,7 +132,7 @@ int fdt_subnode_offset(const void *fdt, int parentoffset, * Searches for the node corresponding to the given path and returns the * offset of that node. */ -int fdt_path_offset(const void *fdt, const char *path) +int fdt_find_node_by_path(const void *fdt, const char *path) { const char *end = path + strlen(path); const char *p = path; |