diff options
author | Simon Glass <sjg@chromium.org> | 2016-10-02 17:59:30 -0600 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2016-10-13 14:12:40 -0600 |
commit | 42b7600d62ae288a8c12431d232b89b26ec61721 (patch) | |
tree | a2253e2280d8f2df7a60099cc117d7caf2d2c1bf /include/libfdt.h | |
parent | df87e6b1b815ae3484ea2aa7c53b90af382eae1b (diff) | |
download | u-boot-imx-42b7600d62ae288a8c12431d232b89b26ec61721.zip u-boot-imx-42b7600d62ae288a8c12431d232b89b26ec61721.tar.gz u-boot-imx-42b7600d62ae288a8c12431d232b89b26ec61721.tar.bz2 |
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 'include/libfdt.h')
-rw-r--r-- | include/libfdt.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/include/libfdt.h b/include/libfdt.h index 398748c..8746790 100644 --- a/include/libfdt.h +++ b/include/libfdt.h @@ -410,10 +410,7 @@ int fdt_path_offset_namelen(const void *fdt, const char *path, int namelen); * -FDT_ERR_BADSTRUCTURE, * -FDT_ERR_TRUNCATED, standard meanings. */ -static inline int fdt_path_offset(const void *fdt, const char *path) -{ - return fdt_path_offset_namelen(fdt, path, strlen(path)); -} +int fdt_path_offset(const void *fdt, const char *path); /** * fdt_get_name - retrieve the name of a given node |