diff options
author | Alan Cox <alan@lxorguk.ukuu.org.uk> | 2008-09-23 17:25:10 +0100 |
---|---|---|
committer | David Woodhouse <David.Woodhouse@intel.com> | 2008-09-26 18:59:05 -0600 |
commit | e416de5e61e1a9b7f987804cbb67230b5f5293c6 (patch) | |
tree | f65d4deb0ece0706186834ad798703d75163ef5d /include | |
parent | 3afe7eb37f4d47f31d30a81c1b42ca02eab01e44 (diff) | |
download | linux-3.10-e416de5e61e1a9b7f987804cbb67230b5f5293c6.tar.gz linux-3.10-e416de5e61e1a9b7f987804cbb67230b5f5293c6.tar.bz2 linux-3.10-e416de5e61e1a9b7f987804cbb67230b5f5293c6.zip |
Export the ROM enable/disable helpers
.... so that they can be used by MTD map drivers. Lets us close #9420
Signed-off-by: Alan Cox <alan@redhat.com>
Signed-off-by: David Woodhouse <David.Woodhouse@intel.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/pci.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/linux/pci.h b/include/linux/pci.h index c0e14008a3c..7a4cee00c1d 100644 --- a/include/linux/pci.h +++ b/include/linux/pci.h @@ -631,6 +631,8 @@ int __must_check pci_assign_resource(struct pci_dev *dev, int i); int pci_select_bars(struct pci_dev *dev, unsigned long flags); /* ROM control related routines */ +int pci_enable_rom(struct pci_dev *pdev); +void pci_disable_rom(struct pci_dev *pdev); void __iomem __must_check *pci_map_rom(struct pci_dev *pdev, size_t *size); void pci_unmap_rom(struct pci_dev *pdev, void __iomem *rom); size_t pci_get_rom_size(void __iomem *rom, size_t size); |