diff options
author | Dominik Brodowski <linux@dominikbrodowski.net> | 2005-09-09 16:03:23 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2005-09-09 16:57:47 -0400 |
commit | b3743fa4442fc172e950ff0eaf6aa96e7d5ce9be (patch) | |
tree | fdc53b41cc1c1d762397bf673c43991000a6bdbe /drivers/pci | |
parent | 76fa82fb7156aa7191dfd1fdede1fc0da51d45dd (diff) |
[PATCH] yenta: share code with PCI core
Share code between setup-bus.c and yenta_socket.c: use the write-out code of
resources to the bridge also in yenta_socket.c, as it provides useful debug
output. In addition, it fixes the bug that the CPU-centric resource view
might need to be transferred to the PCI-centric view: setup-bus.c does that,
while yenta-socket.c did not.
Signed-off-by: Dominik Brodowski <linux@dominikbrodowski.net>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'drivers/pci')
-rw-r--r-- | drivers/pci/setup-bus.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/pci/setup-bus.c b/drivers/pci/setup-bus.c index 6b0e6464eb39..657be948baf7 100644 --- a/drivers/pci/setup-bus.c +++ b/drivers/pci/setup-bus.c | |||
@@ -77,8 +77,7 @@ pbus_assign_resources_sorted(struct pci_bus *bus) | |||
77 | } | 77 | } |
78 | } | 78 | } |
79 | 79 | ||
80 | static void __devinit | 80 | void pci_setup_cardbus(struct pci_bus *bus) |
81 | pci_setup_cardbus(struct pci_bus *bus) | ||
82 | { | 81 | { |
83 | struct pci_dev *bridge = bus->self; | 82 | struct pci_dev *bridge = bus->self; |
84 | struct pci_bus_region region; | 83 | struct pci_bus_region region; |
@@ -130,6 +129,7 @@ pci_setup_cardbus(struct pci_bus *bus) | |||
130 | region.end); | 129 | region.end); |
131 | } | 130 | } |
132 | } | 131 | } |
132 | EXPORT_SYMBOL(pci_setup_cardbus); | ||
133 | 133 | ||
134 | /* Initialize bridges with base/limit values we have collected. | 134 | /* Initialize bridges with base/limit values we have collected. |
135 | PCI-to-PCI Bridge Architecture Specification rev. 1.1 (1998) | 135 | PCI-to-PCI Bridge Architecture Specification rev. 1.1 (1998) |