···157157EXPORT_SYMBOL(ioremap);158158159159/*160160- * __iounmap unmaps nearly everything, so be careful160160+ * iounmap unmaps nearly everything, so be careful161161 * it doesn't free currently pointer/page tables anymore but it162162 * wasn't used anyway and might be added later.163163 */164164-void __iounmap(void __iomem *addr)164164+void iounmap(void __iomem *addr)165165{166166 struct vm_struct *p;167167···173173 pr_err("iounmap: bad address %p\n", addr);174174 kfree(p);175175}176176-EXPORT_SYMBOL(__iounmap);176176+EXPORT_SYMBOL(iounmap);