From d905cf7365ad25c55129ce6bc473b67a642d7817 Mon Sep 17 00:00:00 2001 From: Heiko Stübner Date: Thu, 23 Feb 2017 17:30:38 +0100 Subject: 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 Acked-by: Simon Glass --- include/dm/util.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'include/dm') diff --git a/include/dm/util.h b/include/dm/util.h index 32060ab30e..45529ce0e6 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 -- cgit