projects
/
GitHub
/
moto-9609
/
android_kernel_motorola_exynos9610.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
475bfd3
)
arm64: Use bool function return values of true/false not 1/0
author
Joe Perches
<joe@perches.com>
Mon, 30 Mar 2015 23:46:00 +0000
(
00:46
+0100)
committer
Will 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
patch
|
blob
|
blame
|
history
diff --git
a/arch/arm64/include/asm/dma-mapping.h
b/arch/arm64/include/asm/dma-mapping.h
index 6932bb57dba0210cd2605dc4081571f84150b615..9437e3dc58338ea4c48b9b6afe24d62bc09a7c79 100644
(file)
--- 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)
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;
}