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

Use the normal return values for bool functions

Signed-off-by: Joe Perches <joe@perches.com>
Acked-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
This commit is contained in:
Joe Perches
2015-03-30 16:46:04 -07:00
committed by Michael Ellerman
szülő 4cd968ef42
commit acdb66857f
4 fájl változott, egészen pontosan 6 új sor hozzáadva és 6 régi sor törölve

Fájl megtekintése

@@ -54,7 +54,7 @@ bool dcr_map_ok_generic(dcr_host_t host)
else if (host.type == DCR_HOST_MMIO)
return dcr_map_ok_mmio(host.host.mmio);
else
return 0;
return false;
}
EXPORT_SYMBOL_GPL(dcr_map_ok_generic);