diff options
Diffstat (limited to 'arch/arm/mm/ioremap.c')
-rw-r--r-- | arch/arm/mm/ioremap.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/arch/arm/mm/ioremap.c b/arch/arm/mm/ioremap.c index ff0eed23ddf1..fc91205ff46c 100644 --- a/arch/arm/mm/ioremap.c +++ b/arch/arm/mm/ioremap.c | |||
@@ -481,6 +481,13 @@ int pci_ioremap_io(unsigned int offset, phys_addr_t phys_addr) | |||
481 | __pgprot(get_mem_type(pci_ioremap_mem_type)->prot_pte)); | 481 | __pgprot(get_mem_type(pci_ioremap_mem_type)->prot_pte)); |
482 | } | 482 | } |
483 | EXPORT_SYMBOL_GPL(pci_ioremap_io); | 483 | EXPORT_SYMBOL_GPL(pci_ioremap_io); |
484 | |||
485 | void __iomem *pci_remap_cfgspace(resource_size_t res_cookie, size_t size) | ||
486 | { | ||
487 | return arch_ioremap_caller(res_cookie, size, MT_UNCACHED, | ||
488 | __builtin_return_address(0)); | ||
489 | } | ||
490 | EXPORT_SYMBOL_GPL(pci_remap_cfgspace); | ||
484 | #endif | 491 | #endif |
485 | 492 | ||
486 | /* | 493 | /* |