__ioremap_prot
void __iomem *__ioremap_prot(phys_addr_t phys, size_t size, pgprot_t prot);
return __ioremap_prot(phys, size, prot);
__ioremap_prot((addr), (size), __pgprot(PROT_DEVICE_nGnRE))
__ioremap_prot((addr), (size), __pgprot(PROT_NORMAL_NC))
__ioremap_prot((addr), (size), __pgprot(PROT_DEVICE_nGnRnE))
__ioremap_prot((addr), (size), PAGE_KERNEL)
return __ioremap_prot(addr, size, __pgprot(PROT_NORMAL));
return __ioremap_prot(phys, size, prot);
EXPORT_SYMBOL(__ioremap_prot);