diff options
author | Michal Simek | 2010-08-17 11:48:36 +0200 |
---|---|---|
committer | Michal Simek | 2010-10-21 07:51:39 +0200 |
commit | ac2e7c92ee071d398b72a7848a298664b80f9712 (patch) | |
tree | 16a0007d40d4c1f7e600ea2562e7eb1f9dc642af /arch/microblaze/include/asm/io.h | |
parent | microblaze: wire up prlimit64 and fanotify* syscalls (diff) | |
download | kernel-qcow2-linux-ac2e7c92ee071d398b72a7848a298664b80f9712.tar.gz kernel-qcow2-linux-ac2e7c92ee071d398b72a7848a298664b80f9712.tar.xz kernel-qcow2-linux-ac2e7c92ee071d398b72a7848a298664b80f9712.zip |
microblaze: Define empty mmiowb
mmiowb is required by any driver.
Signed-off-by: Michal Simek <monstr@monstr.eu>
Diffstat (limited to 'arch/microblaze/include/asm/io.h')
-rw-r--r-- | arch/microblaze/include/asm/io.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/microblaze/include/asm/io.h b/arch/microblaze/include/asm/io.h index 00b5398d08c7..eae32220f447 100644 --- a/arch/microblaze/include/asm/io.h +++ b/arch/microblaze/include/asm/io.h @@ -243,6 +243,8 @@ static inline void __iomem *__ioremap(phys_addr_t address, unsigned long size, #define out_8(a, v) __raw_writeb((v), (a)) #define in_8(a) __raw_readb(a) +#define mmiowb() + #define ioport_map(port, nr) ((void __iomem *)(port)) #define ioport_unmap(addr) |