arm64: Use bool function return values of true/false not 1/0
authorJoe Perches <joe@perches.com>
Mon, 30 Mar 2015 23:46:00 +0000 (00:46 +0100)
committerWill Deacon <will.deacon@arm.com>
Tue, 31 Mar 2015 15:28:44 +0000 (16:28 +0100)
Use the normal return values for bool functions

Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: Will Deacon <will.deacon@arm.com>
arch/arm64/include/asm/dma-mapping.h

index 6932bb57dba0210cd2605dc4081571f84150b615..9437e3dc58338ea4c48b9b6afe24d62bc09a7c79 100644 (file)
@@ -97,7 +97,7 @@ static inline int dma_set_mask(struct device *dev, u64 mask)
 static inline bool dma_capable(struct device *dev, dma_addr_t addr, size_t size)
 {
        if (!dev->dma_mask)
-               return 0;
+               return false;
 
        return addr + size - 1 <= *dev->dma_mask;
 }