arm64: remove __iounmap
No need to indirect iounmap for arm64. Signed-off-by: Christoph Hellwig <hch@lst.de> Signed-off-by: Will Deacon <will@kernel.org>
This commit is contained in:
committed by
Will Deacon
parent
61b7cddfe8
commit
e376897f42
@ -163,14 +163,13 @@ extern void __memset_io(volatile void __iomem *, int, size_t);
|
|||||||
* I/O memory mapping functions.
|
* I/O memory mapping functions.
|
||||||
*/
|
*/
|
||||||
extern void __iomem *__ioremap(phys_addr_t phys_addr, size_t size, pgprot_t prot);
|
extern void __iomem *__ioremap(phys_addr_t phys_addr, size_t size, pgprot_t prot);
|
||||||
extern void __iounmap(volatile void __iomem *addr);
|
extern void iounmap(volatile void __iomem *addr);
|
||||||
extern void __iomem *ioremap_cache(phys_addr_t phys_addr, size_t size);
|
extern void __iomem *ioremap_cache(phys_addr_t phys_addr, size_t size);
|
||||||
|
|
||||||
#define ioremap(addr, size) __ioremap((addr), (size), __pgprot(PROT_DEVICE_nGnRE))
|
#define ioremap(addr, size) __ioremap((addr), (size), __pgprot(PROT_DEVICE_nGnRE))
|
||||||
#define ioremap_nocache(addr, size) __ioremap((addr), (size), __pgprot(PROT_DEVICE_nGnRE))
|
#define ioremap_nocache(addr, size) __ioremap((addr), (size), __pgprot(PROT_DEVICE_nGnRE))
|
||||||
#define ioremap_wc(addr, size) __ioremap((addr), (size), __pgprot(PROT_NORMAL_NC))
|
#define ioremap_wc(addr, size) __ioremap((addr), (size), __pgprot(PROT_NORMAL_NC))
|
||||||
#define ioremap_wt(addr, size) __ioremap((addr), (size), __pgprot(PROT_DEVICE_nGnRE))
|
#define ioremap_wt(addr, size) __ioremap((addr), (size), __pgprot(PROT_DEVICE_nGnRE))
|
||||||
#define iounmap __iounmap
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* PCI configuration space mapping function.
|
* PCI configuration space mapping function.
|
||||||
|
@ -69,7 +69,7 @@ void __iomem *__ioremap(phys_addr_t phys_addr, size_t size, pgprot_t prot)
|
|||||||
}
|
}
|
||||||
EXPORT_SYMBOL(__ioremap);
|
EXPORT_SYMBOL(__ioremap);
|
||||||
|
|
||||||
void __iounmap(volatile void __iomem *io_addr)
|
void iounmap(volatile void __iomem *io_addr)
|
||||||
{
|
{
|
||||||
unsigned long addr = (unsigned long)io_addr & PAGE_MASK;
|
unsigned long addr = (unsigned long)io_addr & PAGE_MASK;
|
||||||
|
|
||||||
@ -80,7 +80,7 @@ void __iounmap(volatile void __iomem *io_addr)
|
|||||||
if (is_vmalloc_addr((void *)addr))
|
if (is_vmalloc_addr((void *)addr))
|
||||||
vunmap((void *)addr);
|
vunmap((void *)addr);
|
||||||
}
|
}
|
||||||
EXPORT_SYMBOL(__iounmap);
|
EXPORT_SYMBOL(iounmap);
|
||||||
|
|
||||||
void __iomem *ioremap_cache(phys_addr_t phys_addr, size_t size)
|
void __iomem *ioremap_cache(phys_addr_t phys_addr, size_t size)
|
||||||
{
|
{
|
||||||
|
Reference in New Issue
Block a user