From: Stephen Rothwell Date: Tue, 30 Dec 2008 17:06:15 +0000 (+0000) Subject: powerpc/cell: Bitops work on unsigned longs X-Git-Tag: v2.6.29-rc1~50^2~23 X-Git-Url: http://pilppa.com/gitweb/?a=commitdiff_plain;h=ee418b8646d5d6dc2df343ffaefd2b74940d0048;p=linux-2.6-omap-h63xx.git powerpc/cell: Bitops work on unsigned longs So change the flags member of struct spu from u64 to unsigned long. This change will also prevent some warnings when we change u64 to unsigned long long. Signed-off-by: Stephen Rothwell Acked-by: Arnd Bergmann Signed-off-by: Benjamin Herrenschmidt --- diff --git a/arch/powerpc/include/asm/spu.h b/arch/powerpc/include/asm/spu.h index 8b2eb044270..0ab8d869e3d 100644 --- a/arch/powerpc/include/asm/spu.h +++ b/arch/powerpc/include/asm/spu.h @@ -128,7 +128,7 @@ struct spu { int number; unsigned int irqs[3]; u32 node; - u64 flags; + unsigned long flags; u64 class_0_pending; u64 class_0_dar; u64 class_1_dar;