mips: export pci_iounmap()

I added this function in an earlier patch, but the missing export caused
a build failure

Reported-by: Nathan Chancellor <nathan@kernel.org>
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
This commit is contained in:
Arnd Bergmann
2025-03-19 18:53:06 +01:00
parent ac4e3b09c9
commit eb6a0803c9

View File

@@ -51,5 +51,6 @@ void pci_iounmap(struct pci_dev *dev, void __iomem *addr)
if (addr < base || addr > (base + resource_size(ctrl->io_resource)))
iounmap(addr);
}
EXPORT_SYMBOL(pci_iounmap);
#endif /* CONFIG_PCI_DRIVERS_LEGACY */