arch: Remove dummy mmiowb() definitions from arch code
authorWill Deacon <will.deacon@arm.com>
Fri, 22 Feb 2019 17:25:29 +0000 (17:25 +0000)
committerWill Deacon <will.deacon@arm.com>
Mon, 8 Apr 2019 11:09:27 +0000 (12:09 +0100)
Now that no driver code is using mmiowb() directly, remove the dummy
definitions remaining in architectures that don't make use of
asm-generic/io.h, as well as the definition in asm-generic/io.h itself.

Acked-by: Linus Torvalds <torvalds@linux-foundation.org>
Signed-off-by: Will Deacon <will.deacon@arm.com>
arch/alpha/include/asm/io.h
arch/hexagon/include/asm/io.h
arch/parisc/include/asm/io.h
arch/powerpc/include/asm/mmiowb.h
arch/sparc/include/asm/io_64.h
include/asm-generic/io.h

index 4c533fc..ccf9d65 100644 (file)
@@ -513,8 +513,6 @@ extern inline void writeq(u64 b, volatile void __iomem *addr)
 #define writel_relaxed(b, addr)        __raw_writel(b, addr)
 #define writeq_relaxed(b, addr)        __raw_writeq(b, addr)
 
-#define mmiowb()
-
 /*
  * String version of IO memory access ops:
  */
index e17262a..3d0ae09 100644 (file)
@@ -184,8 +184,6 @@ static inline void writel(u32 data, volatile void __iomem *addr)
 #define writew_relaxed __raw_writew
 #define writel_relaxed __raw_writel
 
-#define mmiowb()
-
 /*
  * Need an mtype somewhere in here, for cache type deals?
  * This is probably too long for an inline.
index 30a8315..93d3701 100644 (file)
@@ -229,8 +229,6 @@ static inline void writeq(unsigned long long q, volatile void __iomem *addr)
 #define writel_relaxed(l, addr)        writel(l, addr)
 #define writeq_relaxed(q, addr)        writeq(q, addr)
 
-#define mmiowb() do { } while (0)
-
 void memset_io(volatile void __iomem *addr, unsigned char val, int count);
 void memcpy_fromio(void *dst, const volatile void __iomem *src, int count);
 void memcpy_toio(volatile void __iomem *dst, const void *src, int count);
index b101806..74a0012 100644 (file)
@@ -11,8 +11,6 @@
 #define arch_mmiowb_state()    (&local_paca->mmiowb_state)
 #define mmiowb()               mb()
 
-#else
-#define mmiowb()               do { } while (0)
 #endif /* CONFIG_MMIOWB */
 
 #include <asm-generic/mmiowb.h>
index b162c23..6889110 100644 (file)
@@ -396,8 +396,6 @@ static inline void memcpy_toio(volatile void __iomem *dst, const void *src,
        }
 }
 
-#define mmiowb()
-
 #ifdef __KERNEL__
 
 /* On sparc64 we have the whole physical IO address space accessible
index bc490a7..8f3bf95 100644 (file)
 #include <asm/mmiowb.h>
 #include <asm-generic/pci_iomap.h>
 
-#ifndef mmiowb
-#define mmiowb() do {} while (0)
-#endif
-
 #ifndef __io_br
 #define __io_br()      barrier()
 #endif