From: Arnd Bergmann Date: Wed, 19 Mar 2025 17:53:06 +0000 (+0100) Subject: mips: export pci_iounmap() X-Git-Tag: ceph-for-6.16-rc1~424^2~3 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=eb6a0803c9dbd1307e26509a01e4ecf69db6b953;p=ceph-client.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 2f82c776c6d0..1b7ce19fb3bb 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 */