diff options
author | Al Viro <viro@ftp.linux.org.uk> | 2007-10-14 14:36:00 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-10-14 15:41:52 -0400 |
commit | c6b44e50b8958d9bfe3003c81e70d9a53852ae52 (patch) | |
tree | 0a1c6194f13708805c708a015b6a9f9e0d6ab2ae /include/asm-arm | |
parent | 5ba253313d014364a9b87b6fa975ce2fc9759aa6 (diff) |
endianness annotations in arm io.h
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'include/asm-arm')
-rw-r--r-- | include/asm-arm/io.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/asm-arm/io.h b/include/asm-arm/io.h index 1d3caa42a386..eebe56e74d6d 100644 --- a/include/asm-arm/io.h +++ b/include/asm-arm/io.h | |||
@@ -228,12 +228,12 @@ extern void _memset_io(volatile void __iomem *, int, size_t); | |||
228 | */ | 228 | */ |
229 | #ifndef ioread8 | 229 | #ifndef ioread8 |
230 | #define ioread8(p) ({ unsigned int __v = __raw_readb(p); __v; }) | 230 | #define ioread8(p) ({ unsigned int __v = __raw_readb(p); __v; }) |
231 | #define ioread16(p) ({ unsigned int __v = le16_to_cpu(__raw_readw(p)); __v; }) | 231 | #define ioread16(p) ({ unsigned int __v = le16_to_cpu((__force __le16)__raw_readw(p)); __v; }) |
232 | #define ioread32(p) ({ unsigned int __v = le32_to_cpu(__raw_readl(p)); __v; }) | 232 | #define ioread32(p) ({ unsigned int __v = le32_to_cpu((__force __le32)__raw_readl(p)); __v; }) |
233 | 233 | ||
234 | #define iowrite8(v,p) __raw_writeb(v, p) | 234 | #define iowrite8(v,p) __raw_writeb(v, p) |
235 | #define iowrite16(v,p) __raw_writew(cpu_to_le16(v), p) | 235 | #define iowrite16(v,p) __raw_writew((__force __u16)cpu_to_le16(v), p) |
236 | #define iowrite32(v,p) __raw_writel(cpu_to_le32(v), p) | 236 | #define iowrite32(v,p) __raw_writel((__force __u32)cpu_to_le32(v), p) |
237 | 237 | ||
238 | #define ioread8_rep(p,d,c) __raw_readsb(p,d,c) | 238 | #define ioread8_rep(p,d,c) __raw_readsb(p,d,c) |
239 | #define ioread16_rep(p,d,c) __raw_readsw(p,d,c) | 239 | #define ioread16_rep(p,d,c) __raw_readsw(p,d,c) |