diff options
author | Rob Herring <robh@kernel.org> | 2019-10-28 11:32:33 -0500 |
---|---|---|
committer | Lorenzo Pieralisi <lorenzo.pieralisi@arm.com> | 2019-10-29 10:47:30 +0000 |
commit | 65991f43769941bea14158e0e731f9362051b618 (patch) | |
tree | c99db53c086ee8df137eac739769b0c4226b592b /drivers/pci | |
parent | 494f8b10d832456a96be4ee7317425f6936cabc8 (diff) | |
download | linux-65991f43769941bea14158e0e731f9362051b618.tar.gz linux-65991f43769941bea14158e0e731f9362051b618.tar.bz2 linux-65991f43769941bea14158e0e731f9362051b618.zip |
PCI: Export pci_parse_request_of_pci_ranges()
pci_parse_request_of_pci_ranges() is missing a module export, so add it.
Signed-off-by: Rob Herring <robh@kernel.org>
Signed-off-by: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
Reviewed-by: Andrew Murray <andrew.murray@arm.com>
Cc: Bjorn Helgaas <bhelgaas@google.com>
Diffstat (limited to 'drivers/pci')
-rw-r--r-- | drivers/pci/of.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/pci/of.c b/drivers/pci/of.c index 36891e7deee3..f3da49a31db4 100644 --- a/drivers/pci/of.c +++ b/drivers/pci/of.c @@ -530,6 +530,7 @@ int pci_parse_request_of_pci_ranges(struct device *dev, pci_free_resource_list(resources); return err; } +EXPORT_SYMBOL_GPL(pci_parse_request_of_pci_ranges); #endif /* CONFIG_PCI */ |