2001-12-07 Bradley D. LaRonde <brad@ltc.com>
* remove detrimental do {...} whiles
* add sequence point to in[b,w,l] to prevent compiler from reordering
* add const modifier to outs[b,w,l] (quiets some compiler warnings)
--- linux-oss-2.4-2001-12-04/include/asm-mips/io.h Thu Dec 6 17:07:24 2001
+++ linux-patch/include/asm-mips/io.h Thu Dec 6 16:47:20 2001
@@ -63,7 +63,7 @@
extern const unsigned long mips_io_port_base;
#define set_io_port_base(base) \
- do { * (unsigned long *) &mips_io_port_base = (base); } while (0)
+ *(unsigned long *)&mips_io_port_base = (base);
/*
* Thanks to James van Artsdalen for a better timing-fix than
@@ -215,41 +215,37 @@
#define outb(val,port) \
-do { \
- *(volatile u8 *)(mips_io_port_base + (port)) = __ioswab8(val); \
-} while(0)
+ *(volatile u8 *)(mips_io_port_base + (port)) = __ioswab8(val)
#define outw(val,port) \
-do { \
- *(volatile u16 *)(mips_io_port_base + (port)) = __ioswab16(val);
\
-} while(0)
+ *(volatile u16 *)(mips_io_port_base + (port)) = __ioswab16(val)
#define outl(val,port) \
-do { \
- *(volatile u32 *)(mips_io_port_base + (port)) = __ioswab32(val);\
-} while(0)
+ *(volatile u32 *)(mips_io_port_base + (port)) = __ioswab32(val)
+/* Don't do {...} while(0) these. */
#define outb_p(val,port) \
-do { \
+({ \
*(volatile u8 *)(mips_io_port_base + (port)) = __ioswab8(val); \
SLOW_DOWN_IO; \
-} while(0)
+})
#define outw_p(val,port) \
-do { \
+{ \
*(volatile u16 *)(mips_io_port_base + (port)) = __ioswab16(val);\
SLOW_DOWN_IO; \
-} while(0)
+}
#define outl_p(val,port) \
-do { \
+{ \
*(volatile u32 *)(mips_io_port_base + (port)) = __ioswab32(val);\
SLOW_DOWN_IO; \
-} while(0)
+}
-#define inb(port) (__ioswab8(*(volatile u8 *)(mips_io_port_base + (port))))
-#define inw(port) (__ioswab16(*(volatile u16 *)(mips_io_port_base + (port))))
-#define inl(port) (__ioswab32(*(volatile u32 *)(mips_io_port_base + (port))))
+/* As in include/asm-arm/io.h, introduce sequence points ({...}) to prevent
gcc * from reordering. */
+#define inb(port) ({ unsigned int __v = __ioswab8(*(volatile u8
*)(mips_io_port_base + (port))); __v; })
+#define inw(port) ({ unsigned int __v = __ioswab16(*(volatile u16
*)(mips_io_port_base + (port))); __v; })
+#define inl(port) ({ unsigned int __v = __ioswab32(*(volatile u32
*)(mips_io_port_base + (port))); __v; })
#define inb_p(port) \
({ \
@@ -278,7 +274,7 @@
__ioswab32(__val); \
})
-static inline void outsb(unsigned long port, void *addr, unsigned int count)
+static inline void outsb(unsigned long port, const void *addr, unsigned int
count)
{
while (count--) {
outb(*(u8 *)addr, port);
@@ -294,7 +290,7 @@
}
}
-static inline void outsw(unsigned long port, void *addr, unsigned int count)
+static inline void outsw(unsigned long port, const void *addr, unsigned int
count)
{
while (count--) {
outw(*(u16 *)addr, port);
@@ -310,7 +306,7 @@
}
}
-static inline void outsl(unsigned long port, void *addr, unsigned int count)
+static inline void outsl(unsigned long port, const void *addr, unsigned int
count)
{
while (count--) {
outl(*(u32 *)addr, port);
|