Commit acdb6685 authored by Joe Perches's avatar Joe Perches Committed by Michael Ellerman

powerpc: Use bool function return values of true/false not 1/0

Use the normal return values for bool functions
Signed-off-by: default avatarJoe Perches <joe@perches.com>
Acked-by: default avatarBenjamin Herrenschmidt <benh@kernel.crashing.org>
Signed-off-by: default avatarMichael Ellerman <mpe@ellerman.id.au>
parent 4cd968ef
...@@ -31,7 +31,7 @@ typedef struct { ...@@ -31,7 +31,7 @@ typedef struct {
static inline bool dcr_map_ok_native(dcr_host_native_t host) static inline bool dcr_map_ok_native(dcr_host_native_t host)
{ {
return 1; return true;
} }
#define dcr_map_native(dev, dcr_n, dcr_c) \ #define dcr_map_native(dev, dcr_n, dcr_c) \
......
...@@ -191,11 +191,11 @@ static inline bool dma_capable(struct device *dev, dma_addr_t addr, size_t size) ...@@ -191,11 +191,11 @@ static inline bool dma_capable(struct device *dev, dma_addr_t addr, size_t size)
struct dev_archdata *sd = &dev->archdata; struct dev_archdata *sd = &dev->archdata;
if (sd->max_direct_dma_addr && addr + size > sd->max_direct_dma_addr) if (sd->max_direct_dma_addr && addr + size > sd->max_direct_dma_addr)
return 0; return false;
#endif #endif
if (!dev->dma_mask) if (!dev->dma_mask)
return 0; return false;
return addr + size - 1 <= *dev->dma_mask; return addr + size - 1 <= *dev->dma_mask;
} }
......
...@@ -335,7 +335,7 @@ static inline bool hpte_read_permission(unsigned long pp, unsigned long key) ...@@ -335,7 +335,7 @@ static inline bool hpte_read_permission(unsigned long pp, unsigned long key)
{ {
if (key) if (key)
return PP_RWRX <= pp && pp <= PP_RXRX; return PP_RWRX <= pp && pp <= PP_RXRX;
return 1; return true;
} }
static inline bool hpte_write_permission(unsigned long pp, unsigned long key) static inline bool hpte_write_permission(unsigned long pp, unsigned long key)
...@@ -373,7 +373,7 @@ static inline bool slot_is_aligned(struct kvm_memory_slot *memslot, ...@@ -373,7 +373,7 @@ static inline bool slot_is_aligned(struct kvm_memory_slot *memslot,
unsigned long mask = (pagesize >> PAGE_SHIFT) - 1; unsigned long mask = (pagesize >> PAGE_SHIFT) - 1;
if (pagesize <= PAGE_SIZE) if (pagesize <= PAGE_SIZE)
return 1; return true;
return !(memslot->base_gfn & mask) && !(memslot->npages & mask); return !(memslot->base_gfn & mask) && !(memslot->npages & mask);
} }
......
...@@ -54,7 +54,7 @@ bool dcr_map_ok_generic(dcr_host_t host) ...@@ -54,7 +54,7 @@ bool dcr_map_ok_generic(dcr_host_t host)
else if (host.type == DCR_HOST_MMIO) else if (host.type == DCR_HOST_MMIO)
return dcr_map_ok_mmio(host.host.mmio); return dcr_map_ok_mmio(host.host.mmio);
else else
return 0; return false;
} }
EXPORT_SYMBOL_GPL(dcr_map_ok_generic); EXPORT_SYMBOL_GPL(dcr_map_ok_generic);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment