diff options
author | Bjorn Helgaas <bhelgaas@google.com> | 2018-06-29 21:17:26 -0500 |
---|---|---|
committer | Bjorn Helgaas <bhelgaas@google.com> | 2018-06-29 21:17:26 -0500 |
commit | 783e84961b1d7a75045383586b8c49e02b7704cd (patch) | |
tree | aac72e50285151dc25e126fb7c301462e2e12d1a /include | |
parent | beced88e6af43c9653cee09f5111ae7495824e07 (diff) | |
download | linux-783e84961b1d7a75045383586b8c49e02b7704cd.tar.gz linux-783e84961b1d7a75045383586b8c49e02b7704cd.tar.bz2 linux-783e84961b1d7a75045383586b8c49e02b7704cd.zip |
PCI: Make pci_get_rom_size() static
pci_get_rom_size() is called only from pci_map_rom(), so it can be static.
Make it static and remove the declaration from include/linux/pci.h.
Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/pci.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/include/linux/pci.h b/include/linux/pci.h index 340029b2fb38..f40d3e05ccd1 100644 --- a/include/linux/pci.h +++ b/include/linux/pci.h @@ -1122,7 +1122,6 @@ 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(struct pci_dev *pdev, void __iomem *rom, size_t size); void __iomem __must_check *pci_platform_rom(struct pci_dev *pdev, size_t *size); /* Power management related routines */ |