]> Pileus Git - ~andy/linux/blobdiff - include/asm-generic/iomap.h
Merge branch 'x86/rdrand' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip
[~andy/linux] / include / asm-generic / iomap.h
index c74ef2c6e633a95dd9b94f34ba418ea6f18091c1..8a3d4fde26040600f7ddb9d7c3e67a4807b265ff 100644 (file)
@@ -67,10 +67,15 @@ extern void ioport_unmap(void __iomem *);
 #endif
 
 #ifdef CONFIG_PCI
-/* Create a virtual mapping cookie for a PCI BAR (memory or IO) */
+/* Destroy a virtual mapping cookie for a PCI BAR (memory or IO) */
 struct pci_dev;
-extern void __iomem *pci_iomap(struct pci_dev *dev, int bar, unsigned long max);
 extern void pci_iounmap(struct pci_dev *dev, void __iomem *);
+#else
+struct pci_dev;
+static inline void pci_iounmap(struct pci_dev *dev, void __iomem *addr)
+{ }
 #endif
 
+#include <asm-generic/pci_iomap.h>
+
 #endif