celleb_scc_pciex endianness misannotations

Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>

authored by Al Viro and committed by Linus Torvalds c409d52b 93072457

+3 -2
+3 -2
arch/powerpc/platforms/cell/celleb_scc_pciex.c
··· 217 static void scc_pciex_ins##name(unsigned long p, void *b, unsigned long c) \ 218 { \ 219 struct iowa_bus *bus = iowa_pio_find_bus(p); \ 220 - u##size *dst = b; \ 221 for (; c != 0; c--, dst++) \ 222 *dst = cpu_to_le##size(__scc_pciex_in##name(bus->phb, p)); \ 223 scc_pciex_io_flush(bus); \ ··· 231 unsigned long c) \ 232 { \ 233 struct iowa_bus *bus = iowa_pio_find_bus(p); \ 234 - const u##size *src = b; \ 235 for (; c != 0; c--, src++) \ 236 __scc_pciex_out##name(bus->phb, le##size##_to_cpu(*src), p); \ 237 } 238 #define cpu_to_le8(x) (x) 239 #define le8_to_cpu(x) (x) 240 PCIEX_PIO_FUNC(8, b)
··· 217 static void scc_pciex_ins##name(unsigned long p, void *b, unsigned long c) \ 218 { \ 219 struct iowa_bus *bus = iowa_pio_find_bus(p); \ 220 + __le##size *dst = b; \ 221 for (; c != 0; c--, dst++) \ 222 *dst = cpu_to_le##size(__scc_pciex_in##name(bus->phb, p)); \ 223 scc_pciex_io_flush(bus); \ ··· 231 unsigned long c) \ 232 { \ 233 struct iowa_bus *bus = iowa_pio_find_bus(p); \ 234 + const __le##size *src = b; \ 235 for (; c != 0; c--, src++) \ 236 __scc_pciex_out##name(bus->phb, le##size##_to_cpu(*src), p); \ 237 } 238 + #define __le8 u8 239 #define cpu_to_le8(x) (x) 240 #define le8_to_cpu(x) (x) 241 PCIEX_PIO_FUNC(8, b)