summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArnd Bergmann <arnd@arndb.de>2025-03-19 18:53:06 +0100
committerArnd Bergmann <arnd@arndb.de>2025-03-19 18:59:13 +0100
commiteb6a0803c9dbd1307e26509a01e4ecf69db6b953 (patch)
treeb04def1c52963fc0e604f5b9919d4ccaafdfed3d
parentac4e3b09c90480e17939f432da37a5328bad76ab (diff)
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>
-rw-r--r--arch/mips/lib/iomap-pci.c1
1 files changed, 1 insertions, 0 deletions
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 */