]> git.karo-electronics.de Git - linux-beck.git/commitdiff
s390: Use bool function return values of true/false not 1/0
authorJoe Perches <joe@perches.com>
Mon, 30 Mar 2015 23:46:05 +0000 (16:46 -0700)
committerMartin 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

index 709955ddaa4deeb822715e24e3e24a149868ff10..9d395961e71380484e7813f42240e6dacf5e6714 100644 (file)
@@ -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;
 }