diff options
author | Simon Glass | 2016-10-02 17:59:30 -0600 |
---|---|---|
committer | Simon Glass | 2016-10-13 14:12:40 -0600 |
commit | 42b7600d62ae288a8c12431d232b89b26ec61721 (patch) | |
tree | a2253e2280d8f2df7a60099cc117d7caf2d2c1bf /lib/libfdt | |
parent | df87e6b1b815ae3484ea2aa7c53b90af382eae1b (diff) |
libfdt: Drop inlining of fdt_path_offset()
The fdt_path_offset() function is not inlined in upstream libfdt. Adjust
U-Boot's version to match.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'lib/libfdt')
-rw-r--r-- | lib/libfdt/fdt_ro.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/libfdt/fdt_ro.c b/lib/libfdt/fdt_ro.c index e38aaa4ccf9..7e894b742b4 100644 --- a/lib/libfdt/fdt_ro.c +++ b/lib/libfdt/fdt_ro.c @@ -204,6 +204,11 @@ int fdt_path_offset_namelen(const void *fdt, const char *path, int namelen) return offset; } +int fdt_path_offset(const void *fdt, const char *path) +{ + return fdt_path_offset_namelen(fdt, path, strlen(path)); +} + const char *fdt_get_name(const void *fdt, int nodeoffset, int *len) { const struct fdt_node_header *nh = _fdt_offset_ptr(fdt, nodeoffset); |