From eb6a0803c9dbd1307e26509a01e4ecf69db6b953 Mon Sep 17 00:00:00 2001 From: Arnd Bergmann Date: Wed, 19 Mar 2025 18:53:06 +0100 Subject: [PATCH] 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 --- arch/mips/lib/iomap-pci.c | 1 + 1 file changed, 1 insertion(+) 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 */ -- 2.47.2