diff options
author | Joe Perches <joe@perches.com> | 2015-03-30 19:46:00 -0400 |
---|---|---|
committer | Will Deacon <will.deacon@arm.com> | 2015-03-31 11:28:44 -0400 |
commit | cc3979b54d5f1d5b5059b404892888c304d28080 (patch) | |
tree | fae4eae1c426711396a2c5b8246c67e4c837db32 /arch/arm64/include | |
parent | 475bfd3d67fa8f7e9cbc08a943b5e8cb6f70044d (diff) |
arm64: Use bool function return values of true/false not 1/0
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>
Diffstat (limited to 'arch/arm64/include')
-rw-r--r-- | arch/arm64/include/asm/dma-mapping.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm64/include/asm/dma-mapping.h b/arch/arm64/include/asm/dma-mapping.h index 6932bb57dba0..9437e3dc5833 100644 --- a/arch/arm64/include/asm/dma-mapping.h +++ b/arch/arm64/include/asm/dma-mapping.h | |||
@@ -97,7 +97,7 @@ static inline int dma_set_mask(struct device *dev, u64 mask) | |||
97 | static inline bool dma_capable(struct device *dev, dma_addr_t addr, size_t size) | 97 | static inline bool dma_capable(struct device *dev, dma_addr_t addr, size_t size) |
98 | { | 98 | { |
99 | if (!dev->dma_mask) | 99 | if (!dev->dma_mask) |
100 | return 0; | 100 | return false; |
101 | 101 | ||
102 | return addr + size - 1 <= *dev->dma_mask; | 102 | return addr + size - 1 <= *dev->dma_mask; |
103 | } | 103 | } |