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 /drivers/pci/rom.c | |
parent | beced88e6af43c9653cee09f5111ae7495824e07 (diff) |
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 'drivers/pci/rom.c')
-rw-r--r-- | drivers/pci/rom.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/pci/rom.c b/drivers/pci/rom.c index 3a33f5ce314a..137bf0cee897 100644 --- a/drivers/pci/rom.c +++ b/drivers/pci/rom.c @@ -80,7 +80,8 @@ EXPORT_SYMBOL_GPL(pci_disable_rom); * The PCI window size could be much larger than the * actual image size. */ -size_t pci_get_rom_size(struct pci_dev *pdev, void __iomem *rom, size_t size) +static size_t pci_get_rom_size(struct pci_dev *pdev, void __iomem *rom, + size_t size) { void __iomem *image; int last_image; |