diff options
author | Paul Mundt <lethal@linux-sh.org> | 2009-04-20 18:47:21 +0900 |
---|---|---|
committer | Paul Mundt <lethal@linux-sh.org> | 2009-04-20 18:47:21 +0900 |
commit | 5160d3f782a5e0cdb3bdaa8a891a1fb9d9ab83ec (patch) | |
tree | 6db575d4980c598ec19f16a3454aacef151237e9 /arch/sh/drivers/pci/pci.c | |
parent | 09cfeb133e3cac39b8b9a2cb1d8ab4f77e396248 (diff) | |
download | op-kernel-dev-5160d3f782a5e0cdb3bdaa8a891a1fb9d9ab83ec.zip op-kernel-dev-5160d3f782a5e0cdb3bdaa8a891a1fb9d9ab83ec.tar.gz |
sh: pci: Consolidate bus<->resource mapping in pci-lib.
Now that the io and mem offsets are tracked accordingly, the pci-new
version of the bus<->resource mappers can be used generically. This
moves them in to pci-lib.
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Diffstat (limited to 'arch/sh/drivers/pci/pci.c')
-rw-r--r-- | arch/sh/drivers/pci/pci.c | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/arch/sh/drivers/pci/pci.c b/arch/sh/drivers/pci/pci.c index d39f240..c15a6f0 100644 --- a/arch/sh/drivers/pci/pci.c +++ b/arch/sh/drivers/pci/pci.c @@ -72,20 +72,6 @@ void __devinit __weak pcibios_fixup_bus(struct pci_bus *bus) pci_read_bridge_bases(bus); } -void pcibios_resource_to_bus(struct pci_dev *dev, struct pci_bus_region *region, - struct resource *res) -{ - region->start = res->start; - region->end = res->end; -} - -void pcibios_bus_to_resource(struct pci_dev *dev, struct resource *res, - struct pci_bus_region *region) -{ - res->start = region->start; - res->end = region->end; -} - int pcibios_enable_device(struct pci_dev *dev, int mask) { u16 cmd, old_cmd; |