summaryrefslogtreecommitdiff
path: root/drivers/core
diff options
context:
space:
mode:
authorHeiko Stübner <heiko@sntech.de>2017-02-23 16:30:38 (GMT)
committerSimon Glass <sjg@chromium.org>2017-03-16 22:03:47 (GMT)
commitd905cf7365ad25c55129ce6bc473b67a642d7817 (patch)
tree426cb4ef8caae5514bd8c2fe0b871335df7ffaf0 /drivers/core
parent5c0206cc1074c3c945b4cfa3d8149c1c62bc1720 (diff)
downloadu-boot-fsl-qoriq-d905cf7365ad25c55129ce6bc473b67a642d7817.tar.xz
dm: Return actual bools in dm_fdt_pre_reloc
Documentation says that we're returning true/false, not 1/0 so adapt the function to return actual booleans. Signed-off-by: Heiko Stuebner <heiko@sntech.de> Acked-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'drivers/core')
-rw-r--r--drivers/core/util.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/drivers/core/util.c b/drivers/core/util.c
index bd4de7a..5ceac8b 100644
--- a/drivers/core/util.c
+++ b/drivers/core/util.c
@@ -37,17 +37,17 @@ int list_count_items(struct list_head *head)
return count;
}
-int dm_fdt_pre_reloc(const void *blob, int offset)
+bool dm_fdt_pre_reloc(const void *blob, int offset)
{
if (fdt_getprop(blob, offset, "u-boot,dm-pre-reloc", NULL))
- return 1;
+ return true;
#ifdef CONFIG_TPL_BUILD
if (fdt_getprop(blob, offset, "u-boot,dm-tpl", NULL))
- return 1;
+ return true;
#elif defined(CONFIG_SPL_BUILD)
if (fdt_getprop(blob, offset, "u-boot,dm-spl", NULL))
- return 1;
+ return true;
#else
/*
* In regular builds individual spl and tpl handling both
@@ -55,8 +55,8 @@ int dm_fdt_pre_reloc(const void *blob, int offset)
*/
if (fdt_getprop(blob, offset, "u-boot,dm-spl", NULL) ||
fdt_getprop(blob, offset, "u-boot,dm-tpl", NULL))
- return 1;
+ return true;
#endif
- return 0;
+ return false;
}