From: Arnd Bergmann Date: Wed, 19 Mar 2025 17:53:06 +0000 (+0100) Subject: mips: export pci_iounmap() X-Git-Tag: v6.15-rc1~155^2~3 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=eb6a0803c9dbd1307e26509a01e4ecf69db6b953;p=thirdparty%2Fkernel%2Flinux.git mips: export pci_iounmap() I added this function in an earlier patch, but the missing export caused a build failure Reported-by: Nathan Chancellor Signed-off-by: Arnd Bergmann --- diff --git a/arch/mips/lib/iomap-pci.c b/arch/mips/lib/iomap-pci.c index 2f82c776c6d0a..1b7ce19fb3bb8 100644 --- a/arch/mips/lib/iomap-pci.c +++ b/arch/mips/lib/iomap-pci.c @@ -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 */