diff options
author | Ben Hutchings <ben@decadent.org.uk> | 2015-10-06 00:56:56 +0100 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2015-10-06 13:19:25 +0200 |
commit | da11f98fd018319f65af9c10174ccc829207d937 (patch) | |
tree | d220a05c88cab51088ef64db47b10f2af8cc56dc /arch/mips/include/asm/io.h | |
parent | 71a0a72456b48de972d7ed613b06a22a3aa9057f (diff) | |
download | talos-op-linux-da11f98fd018319f65af9c10174ccc829207d937.tar.gz talos-op-linux-da11f98fd018319f65af9c10174ccc829207d937.zip |
MIPS: Define ioremap_uc
All architectures must now define ioremap_uc(), but MIPS currently
only has ioremap_nocache().
Fixes: 4c73e8926623 ("arch/*/io.h: Add ioremap_uc() to all architectures")
Signed-off-by: Ben Hutchings <ben@decadent.org.uk>
Cc: Luis R. Rodriguez <mcgrof@suse.com>
Cc: linux-mips@linux-mips.org
Patchwork: https://patchwork.linux-mips.org/patch/11263/
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch/mips/include/asm/io.h')
-rw-r--r-- | arch/mips/include/asm/io.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/mips/include/asm/io.h b/arch/mips/include/asm/io.h index 9e777cd42b67..d10fd80dbb7e 100644 --- a/arch/mips/include/asm/io.h +++ b/arch/mips/include/asm/io.h @@ -256,6 +256,7 @@ static inline void __iomem * __ioremap_mode(phys_addr_t offset, unsigned long si */ #define ioremap_nocache(offset, size) \ __ioremap_mode((offset), (size), _CACHE_UNCACHED) +#define ioremap_uc ioremap_nocache /* * ioremap_cachable - map bus memory into CPU space |