fdt: make fdt_get_base_address() return OF_BAD_ADDR when "reg" not found
authorMasahiro Yamada <yamada.masahiro@socionext.com>
Thu, 27 Jun 2019 07:39:57 +0000 (16:39 +0900)
committerSimon Glass <sjg@chromium.org>
Wed, 24 Jul 2019 19:54:08 +0000 (12:54 -0700)
commite3665ba9d7c82f75c4dbd2057276a6990929be40
tree8c6220eac87c0f006c1de79cc39a523d07537f3e
parente2705fa9c5bfa7f310047a805cfa9103990d381c
fdt: make fdt_get_base_address() return OF_BAD_ADDR when "reg" not found

Currently, fdt_get_base_address() returns 0 if the "reg" property is
missing. Since 0 is a valid value, it is not suitable for the error
handling. Return OF_BAD_ADDR instead.

Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
common/fdt_support.c