Home
last modified time | relevance | path

Searched hist:"73 e1e7952a2a629dc071d894594df4852acc11ad" (Results 1 – 1 of 1) sorted by relevance

/rk3399_rockchip-uboot/lib/libfdt/
H A Dfdt_ro.c73e1e7952a2a629dc071d894594df4852acc11ad Tue Jul 14 16:08:44 UTC 2015 Masahiro Yamada <yamada.masahiro@socionext.com> libfdt: fix error code of fdt_count_strings()

Currently, this function returns a positive value on error,
so we never know whether this function has succeeded or failed.

For example, if the given property is not found, fdt_getprop()
returns -FDT_ERR_NOTFOUND, and then this function inverts it,
i.e., returns FDT_ERR_NOTFOUND (=1).

Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Fixes: bc4147ab2d69 ("fdt: Add a function to count strings")
Acked-by: Simon Glass <sjg@chromium.org>