Lines Matching defs:__iowmb
165 #define __iowmb() wmb()
168 #define __iowmb() do { } while (0)
235 #define outb(v,p) ({ __iowmb(); __raw_writeb(v,__io(p)); })
236 #define outw(v,p) ({ __iowmb(); __raw_writew((__force __u16) \
238 #define outl(v,p) ({ __iowmb(); __raw_writel((__force __u32) \
288 #define writeb(v,c) ({ __iowmb(); writeb_relaxed(v,c); })
289 #define writew(v,c) ({ __iowmb(); writew_relaxed(v,c); })
290 #define writel(v,c) ({ __iowmb(); writel_relaxed(v,c); })
393 #define iowrite16be(v,p) ({ __iowmb(); __raw_writew((__force __u16)cpu_to_be16(v), p); })
394 #define iowrite32be(v,p) ({ __iowmb(); __raw_writel((__force __u32)cpu_to_be32(v), p); })