Lines Matching defs:__iowmb
166 #define __iowmb() wmb()
169 #define __iowmb() do { } while (0)
252 #define outb(v,p) ({ __iowmb(); __raw_writeb(v,__io(p)); })
253 #define outw(v,p) ({ __iowmb(); __raw_writew((__force __u16) \
255 #define outl(v,p) ({ __iowmb(); __raw_writel((__force __u32) \
305 #define writeb(v,c) ({ __iowmb(); writeb_relaxed(v,c); })
306 #define writew(v,c) ({ __iowmb(); writew_relaxed(v,c); })
307 #define writel(v,c) ({ __iowmb(); writel_relaxed(v,c); })
410 #define iowrite16be(v,p) ({ __iowmb(); __raw_writew((__force __u16)cpu_to_be16(v), p); })
411 #define iowrite32be(v,p) ({ __iowmb(); __raw_writel((__force __u32)cpu_to_be32(v), p); })