diff options
author | Benjamin Herrenschmidt <benh@kernel.crashing.org> | 2005-12-13 02:09:16 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2006-01-09 15:13:19 -0500 |
commit | ac7dc65ac0b945270548414491efa9c4357417d9 (patch) | |
tree | 62fb38b349d00d5f3956ab312d175fe33807ff70 /drivers | |
parent | 498879417756effe6dc385ee04645a83d724fdef (diff) |
[PATCH] PCI: Export pci_cfg_space_size
The powerpc PCI code sets up the PCI tree without doing config space
accesses in most cases, from the firmware tree. However, it still wants
to call pci_cfg_space_size() under some conditions, thus it needs to
be made non-static (though I don't see a point to export it to modules).
Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/pci/probe.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/pci/probe.c b/drivers/pci/probe.c index 3c9834d80850..adfad4fd6a13 100644 --- a/drivers/pci/probe.c +++ b/drivers/pci/probe.c | |||
@@ -717,7 +717,7 @@ static void pci_release_dev(struct device *dev) | |||
717 | * reading the dword at 0x100 which must either be 0 or a valid extended | 717 | * reading the dword at 0x100 which must either be 0 or a valid extended |
718 | * capability header. | 718 | * capability header. |
719 | */ | 719 | */ |
720 | static int pci_cfg_space_size(struct pci_dev *dev) | 720 | int pci_cfg_space_size(struct pci_dev *dev) |
721 | { | 721 | { |
722 | int pos; | 722 | int pos; |
723 | u32 status; | 723 | u32 status; |