summaryrefslogtreecommitdiff
path: root/include/dm
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 /include/dm
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 'include/dm')
-rw-r--r--include/dm/util.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/dm/util.h b/include/dm/util.h
index 32060ab..45529ce 100644
--- a/include/dm/util.h
+++ b/include/dm/util.h
@@ -72,6 +72,6 @@ static inline void dm_dump_devres(void)
*
* Returns true if node is needed in SPL/TL, false otherwise.
*/
-int dm_fdt_pre_reloc(const void *blob, int offset);
+bool dm_fdt_pre_reloc(const void *blob, int offset);
#endif