提交 252510ac 编写于 作者: M Masahiro Yamada 提交者: Simon Glass

dm: ofnode: use ofnode_read_bool() to check property existence

This will clarify the code.
Signed-off-by: NMasahiro Yamada <yamada.masahiro@socionext.com>
Acked-by: NSimon Glass <sjg@chromium.org>
上级 766c28a5
......@@ -582,22 +582,22 @@ int ofnode_read_simple_size_cells(ofnode node)
bool ofnode_pre_reloc(ofnode node)
{
if (ofnode_read_prop(node, "u-boot,dm-pre-reloc", NULL))
if (ofnode_read_bool(node, "u-boot,dm-pre-reloc"))
return true;
#ifdef CONFIG_TPL_BUILD
if (ofnode_read_prop(node, "u-boot,dm-tpl", NULL))
if (ofnode_read_bool(node, "u-boot,dm-tpl"))
return true;
#elif defined(CONFIG_SPL_BUILD)
if (ofnode_read_prop(node, "u-boot,dm-spl", NULL))
if (ofnode_read_bool(node, "u-boot,dm-spl"))
return true;
#else
/*
* In regular builds individual spl and tpl handling both
* count as handled pre-relocation for later second init.
*/
if (ofnode_read_prop(node, "u-boot,dm-spl", NULL) ||
ofnode_read_prop(node, "u-boot,dm-tpl", NULL))
if (ofnode_read_bool(node, "u-boot,dm-spl") ||
ofnode_read_bool(node, "u-boot,dm-tpl"))
return true;
#endif
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册