diff options
author | Kumar Gala <galak@kernel.crashing.org> | 2007-06-27 11:27:33 -0400 |
---|---|---|
committer | Kumar Gala <galak@kernel.crashing.org> | 2007-06-29 02:58:42 -0400 |
commit | 0b1d40c4d4dd8f276d8d9730204b3a0a17ab0d61 (patch) | |
tree | f73777caa266cd306a415d5f50abe9cb93f7fba5 /arch/powerpc/kernel/pci_32.c | |
parent | dbf8471f5294b27ba9b6232ffc177dcd4e0a2fa5 (diff) |
[POWERPC] Move pci_bus_to_hose users to pci_bus_to_host
In the places we can move to using pci_bus_to_host, this allows us
to make pci_bus_to_host static and remove its export.
Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
Diffstat (limited to 'arch/powerpc/kernel/pci_32.c')
-rw-r--r-- | arch/powerpc/kernel/pci_32.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/arch/powerpc/kernel/pci_32.c b/arch/powerpc/kernel/pci_32.c index df3251ccca0f..c81ffa282977 100644 --- a/arch/powerpc/kernel/pci_32.c +++ b/arch/powerpc/kernel/pci_32.c | |||
@@ -766,7 +766,7 @@ static struct device_node *scan_OF_for_pci_bus(struct pci_bus *bus) | |||
766 | 766 | ||
767 | /* Are we a root bus ? */ | 767 | /* Are we a root bus ? */ |
768 | if (bus->self == NULL || bus->parent == NULL) { | 768 | if (bus->self == NULL || bus->parent == NULL) { |
769 | struct pci_controller *hose = pci_bus_to_hose(bus->number); | 769 | struct pci_controller *hose = pci_bus_to_host(bus); |
770 | if (hose == NULL) | 770 | if (hose == NULL) |
771 | return NULL; | 771 | return NULL; |
772 | return of_node_get(hose->arch_data); | 772 | return of_node_get(hose->arch_data); |
@@ -1492,7 +1492,7 @@ int pcibios_enable_device(struct pci_dev *dev, int mask) | |||
1492 | return 0; | 1492 | return 0; |
1493 | } | 1493 | } |
1494 | 1494 | ||
1495 | struct pci_controller* | 1495 | static struct pci_controller* |
1496 | pci_bus_to_hose(int bus) | 1496 | pci_bus_to_hose(int bus) |
1497 | { | 1497 | { |
1498 | struct pci_controller* hose = hose_head; | 1498 | struct pci_controller* hose = hose_head; |
@@ -1507,7 +1507,7 @@ static struct resource *__pci_mmap_make_offset(struct pci_dev *dev, | |||
1507 | resource_size_t *offset, | 1507 | resource_size_t *offset, |
1508 | enum pci_mmap_state mmap_state) | 1508 | enum pci_mmap_state mmap_state) |
1509 | { | 1509 | { |
1510 | struct pci_controller *hose = pci_bus_to_hose(dev->bus->number); | 1510 | struct pci_controller *hose = pci_bus_to_host(dev->bus); |
1511 | unsigned long io_offset = 0; | 1511 | unsigned long io_offset = 0; |
1512 | int i, res_bit; | 1512 | int i, res_bit; |
1513 | 1513 | ||
@@ -1719,7 +1719,7 @@ void pci_resource_to_user(const struct pci_dev *dev, int bar, | |||
1719 | const struct resource *rsrc, | 1719 | const struct resource *rsrc, |
1720 | resource_size_t *start, resource_size_t *end) | 1720 | resource_size_t *start, resource_size_t *end) |
1721 | { | 1721 | { |
1722 | struct pci_controller *hose = pci_bus_to_hose(dev->bus->number); | 1722 | struct pci_controller *hose = pci_bus_to_host(dev->bus); |
1723 | resource_size_t offset = 0; | 1723 | resource_size_t offset = 0; |
1724 | 1724 | ||
1725 | if (hose == NULL) | 1725 | if (hose == NULL) |