diff options
author | Tejun Heo <htejun@gmail.com> | 2007-03-09 19:45:58 +0900 |
---|---|---|
committer | Jeff Garzik <jeff@garzik.org> | 2007-04-28 14:15:58 -0400 |
commit | ec04b075843d12b5115267415d0426b48e672136 (patch) | |
tree | eddd8a861eb0fd1c455c6a7f042a667bafb45af5 /include/linux | |
parent | a73984a0d5664fa1bfdd9f0a475b8d74af7f44a6 (diff) | |
download | kernel-crypto-ec04b075843d12b5115267415d0426b48e672136.tar.gz kernel-crypto-ec04b075843d12b5115267415d0426b48e672136.tar.xz kernel-crypto-ec04b075843d12b5115267415d0426b48e672136.zip |
iomap: implement pcim_iounmap_regions()
Implement pcim_iounmap_regions() - the opposite of
pcim_iomap_regions().
Signed-off-by: Tejun heo <htejun@gmail.com>
Signed-off-by: Jeff Garzik <jeff@garzik.org>
Diffstat (limited to 'include/linux')
-rw-r--r-- | include/linux/pci.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/linux/pci.h b/include/linux/pci.h index a3ad76221c6..972491089ac 100644 --- a/include/linux/pci.h +++ b/include/linux/pci.h @@ -838,6 +838,7 @@ void __iomem * pcim_iomap(struct pci_dev *pdev, int bar, unsigned long maxlen); void pcim_iounmap(struct pci_dev *pdev, void __iomem *addr); void __iomem * const * pcim_iomap_table(struct pci_dev *pdev); int pcim_iomap_regions(struct pci_dev *pdev, u16 mask, const char *name); +void pcim_iounmap_regions(struct pci_dev *pdev, u16 mask); extern int pci_pci_problems; #define PCIPCI_FAIL 1 /* No PCI PCI DMA */ |