diff options
author | Christoph Hellwig <hch@lst.de> | 2019-10-16 08:11:43 +0200 |
---|---|---|
committer | Christoph Hellwig <hch@lst.de> | 2019-11-11 21:18:20 +0100 |
commit | 1246b8146c550641b3217eef65792685ca2dcdc5 (patch) | |
tree | 7a6a7f1ee4a0ab564a957372cdd6f666add0eb8c /arch/csky/include | |
parent | riscv: use the generic ioremap code (diff) | |
download | linux-1246b8146c550641b3217eef65792685ca2dcdc5.tar.xz linux-1246b8146c550641b3217eef65792685ca2dcdc5.zip |
csky: remove ioremap_cache
No driver that can be used on csky uses ioremap_cache, and this
interface has been deprecated in favor of memremap.
Signed-off-by: Christoph Hellwig <hch@lst.de>
Acked-by: Guo Ren <guoren@kernel.org>
Diffstat (limited to 'arch/csky/include')
-rw-r--r-- | arch/csky/include/asm/io.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/arch/csky/include/asm/io.h b/arch/csky/include/asm/io.h index a4b9fb616faa..f572605d5ad5 100644 --- a/arch/csky/include/asm/io.h +++ b/arch/csky/include/asm/io.h @@ -36,13 +36,11 @@ /* * I/O memory mapping functions. */ -extern void __iomem *ioremap_cache(phys_addr_t addr, size_t size); extern void __iomem *__ioremap(phys_addr_t addr, size_t size, pgprot_t prot); extern void iounmap(void *addr); #define ioremap(addr, size) __ioremap((addr), (size), pgprot_noncached(PAGE_KERNEL)) #define ioremap_wc(addr, size) __ioremap((addr), (size), pgprot_writecombine(PAGE_KERNEL)) -#define ioremap_cache ioremap_cache #include <asm-generic/io.h> |