projects
/
firefly-linux-kernel-4.4.55.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
bb0fd7a
)
s390: Use bool function return values of true/false not 1/0
author
Joe Perches
<joe@perches.com>
Mon, 30 Mar 2015 23:46:05 +0000
(16:46 -0700)
committer
Martin Schwidefsky
<schwidefsky@de.ibm.com>
Wed, 15 Apr 2015 10:23:48 +0000
(12:23 +0200)
Use the normal return values for bool functions
Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: Heiko Carstens <heiko.carstens@de.ibm.com>
Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
arch/s390/include/asm/dma-mapping.h
patch
|
blob
|
history
diff --git
a/arch/s390/include/asm/dma-mapping.h
b/arch/s390/include/asm/dma-mapping.h
index 709955ddaa4deeb822715e24e3e24a149868ff10..9d395961e71380484e7813f42240e6dacf5e6714 100644
(file)
--- a/
arch/s390/include/asm/dma-mapping.h
+++ b/
arch/s390/include/asm/dma-mapping.h
@@
-42,7
+42,7
@@
static inline int dma_supported(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;
}