diff options
author | Andrew Morton <akpm@linux-foundation.org> | 2008-12-01 14:30:30 -0800 |
---|---|---|
committer | Jesse Barnes <jbarnes@virtuousgeek.org> | 2009-01-07 11:12:57 -0800 |
commit | 1684f5ddd4c0c754f52c78eaa2c5c69ad09fb18c (patch) | |
tree | 1085974a81fba002bcc05cdd88a11134ec13799c /include/linux/pci.h | |
parent | bebd590ca27e80ffe3129ab4f0a3124f0a340f43 (diff) | |
download | talos-obmc-linux-1684f5ddd4c0c754f52c78eaa2c5c69ad09fb18c.tar.gz talos-obmc-linux-1684f5ddd4c0c754f52c78eaa2c5c69ad09fb18c.zip |
PCI: uninline pci_ioremap_bar()
It's too large to be inlined.
Acked-by: Arjan van de Ven <arjan@linux.intel.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Jesse Barnes <jbarnes@virtuousgeek.org>
Diffstat (limited to 'include/linux/pci.h')
-rw-r--r-- | include/linux/pci.h | 15 |
1 files changed, 1 insertions, 14 deletions
diff --git a/include/linux/pci.h b/include/linux/pci.h index 58357d14f94c..0d8bc920c2e5 100644 --- a/include/linux/pci.h +++ b/include/linux/pci.h @@ -1160,20 +1160,7 @@ static inline void pci_mmcfg_late_init(void) { } int pci_ext_cfg_avail(struct pci_dev *dev); -#ifdef CONFIG_HAS_IOMEM -static inline void __iomem *pci_ioremap_bar(struct pci_dev *pdev, int bar) -{ - /* - * Make sure the BAR is actually a memory resource, not an IO resource - */ - if (!(pci_resource_flags(pdev, bar) & IORESOURCE_MEM)) { - WARN_ON(1); - return NULL; - } - return ioremap_nocache(pci_resource_start(pdev, bar), - pci_resource_len(pdev, bar)); -} -#endif +void __iomem *pci_ioremap_bar(struct pci_dev *pdev, int bar); #endif /* __KERNEL__ */ #endif /* LINUX_PCI_H */ |