[PATCH 08/25] sparc: Use bool function return values of true/false not 1/0

From: Joe Perches
Date: Mon Mar 30 2015 - 19:47:35 EST


Use the normal return values for bool functions

Signed-off-by: Joe Perches <joe@xxxxxxxxxxx>
---
arch/sparc/mm/init_64.c | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/arch/sparc/mm/init_64.c b/arch/sparc/mm/init_64.c
index 4ca0d6b..f7c4832 100644
--- a/arch/sparc/mm/init_64.c
+++ b/arch/sparc/mm/init_64.c
@@ -1389,25 +1389,25 @@ bool kern_addr_valid(unsigned long addr)

pgd = pgd_offset_k(addr);
if (pgd_none(*pgd))
- return 0;
+ return false;

pud = pud_offset(pgd, addr);
if (pud_none(*pud))
- return 0;
+ return false;

if (pud_large(*pud))
return pfn_valid(pud_pfn(*pud));

pmd = pmd_offset(pud, addr);
if (pmd_none(*pmd))
- return 0;
+ return false;

if (pmd_large(*pmd))
return pfn_valid(pmd_pfn(*pmd));

pte = pte_offset_kernel(pmd, addr);
if (pte_none(*pte))
- return 0;
+ return false;

return pfn_valid(pte_pfn(*pte));
}
--
2.1.2

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/