diff options
author | Christoph Hellwig <hch@lst.de> | 2019-08-11 14:03:29 +0200 |
---|---|---|
committer | Christoph Hellwig <hch@lst.de> | 2019-11-11 17:19:40 +0100 |
commit | 6a22d824a4154004c25850b0e1b710c2a88fb348 (patch) | |
tree | 8bcc6ab2844e9d7a8d8bdae26a06da5edc10ae5e /arch/arm/mm/ioremap.c | |
parent | 31f4f5b495a62c9a8b15b1c3581acd5efeb9af8c (diff) |
arm: remove ioremap_cached
No users of ioremap_cached are left, remove it.
Signed-off-by: Christoph Hellwig <hch@lst.de>
Reviewed-by: Arnd Bergmann <arnd@arndb.de>
Diffstat (limited to 'arch/arm/mm/ioremap.c')
-rw-r--r-- | arch/arm/mm/ioremap.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/arch/arm/mm/ioremap.c b/arch/arm/mm/ioremap.c index d42b93316183..72286f9a4d30 100644 --- a/arch/arm/mm/ioremap.c +++ b/arch/arm/mm/ioremap.c @@ -382,15 +382,11 @@ void __iomem *ioremap(resource_size_t res_cookie, size_t size) EXPORT_SYMBOL(ioremap); void __iomem *ioremap_cache(resource_size_t res_cookie, size_t size) - __alias(ioremap_cached); - -void __iomem *ioremap_cached(resource_size_t res_cookie, size_t size) { return arch_ioremap_caller(res_cookie, size, MT_DEVICE_CACHED, __builtin_return_address(0)); } EXPORT_SYMBOL(ioremap_cache); -EXPORT_SYMBOL(ioremap_cached); void __iomem *ioremap_wc(resource_size_t res_cookie, size_t size) { |