projects
/
platform
/
kernel
/
linux-starfive.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
|
history
diff --git
a/arch/arm64/include/asm/dma-mapping.h
b/arch/arm64/include/asm/dma-mapping.h
index
6932bb5
..
9437e3d
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;
}