diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2008-11-07 09:18:14 -0800 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2008-11-07 09:18:14 -0800 |
commit | 8ec96e7bba2b8fa339b666354dffe3f47b9fa074 (patch) | |
tree | 133e83776ab622259b5a8f852f75934822c09c93 /include | |
parent | cb110171a65c5a2d85ec814d498986db611040fd (diff) | |
parent | 88e7df0b7ee717f9db3333fb1248827bbdb2d4d3 (diff) | |
download | op-kernel-dev-8ec96e7bba2b8fa339b666354dffe3f47b9fa074.zip op-kernel-dev-8ec96e7bba2b8fa339b666354dffe3f47b9fa074.tar.gz |
Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/jbarnes/pci-2.6
* 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/jbarnes/pci-2.6:
PCI: fix range check on mmapped sysfs resource files
PCI: remove excess kernel-doc notation
PCI: annotate return value of pci_ioremap_bar with __iomem
PCI: fix VPD limit quirk for Broadcom 5708S
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/pci.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/pci.h b/include/linux/pci.h index c75b82b..feb4657 100644 --- a/include/linux/pci.h +++ b/include/linux/pci.h @@ -1136,7 +1136,7 @@ static inline void pci_mmcfg_late_init(void) { } #endif #ifdef CONFIG_HAS_IOMEM -static inline void * pci_ioremap_bar(struct pci_dev *pdev, int bar) +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 |