mirror of
https://github.com/torvalds/linux.git
synced 2024-11-11 22:51:42 +00:00
[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>
This commit is contained in:
parent
4988794177
commit
ac7dc65ac0
@ -717,7 +717,7 @@ static void pci_release_dev(struct device *dev)
|
|||||||
* reading the dword at 0x100 which must either be 0 or a valid extended
|
* reading the dword at 0x100 which must either be 0 or a valid extended
|
||||||
* capability header.
|
* capability header.
|
||||||
*/
|
*/
|
||||||
static int pci_cfg_space_size(struct pci_dev *dev)
|
int pci_cfg_space_size(struct pci_dev *dev)
|
||||||
{
|
{
|
||||||
int pos;
|
int pos;
|
||||||
u32 status;
|
u32 status;
|
||||||
|
@ -449,6 +449,7 @@ int pci_scan_bridge(struct pci_bus *bus, struct pci_dev * dev, int max, int pass
|
|||||||
|
|
||||||
void pci_walk_bus(struct pci_bus *top, void (*cb)(struct pci_dev *, void *),
|
void pci_walk_bus(struct pci_bus *top, void (*cb)(struct pci_dev *, void *),
|
||||||
void *userdata);
|
void *userdata);
|
||||||
|
int pci_cfg_space_size(struct pci_dev *dev);
|
||||||
|
|
||||||
/* kmem_cache style wrapper around pci_alloc_consistent() */
|
/* kmem_cache style wrapper around pci_alloc_consistent() */
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user