diff options
author | Paul Mundt <lethal@linux-sh.org> | 2009-04-20 15:38:25 +0900 |
---|---|---|
committer | Paul Mundt <lethal@linux-sh.org> | 2009-04-20 15:38:25 +0900 |
commit | 9ade1217c9ba39ad2f004a898ddfbb815fd5fe74 (patch) | |
tree | 5983659bb85a596df5a9f17042c2d6af6f3511b9 /arch/sh/drivers/pci | |
parent | 62c7ae87cb5962d3dfaa6d916a15e4faa9e07363 (diff) | |
download | talos-obmc-linux-9ade1217c9ba39ad2f004a898ddfbb815fd5fe74.tar.gz talos-obmc-linux-9ade1217c9ba39ad2f004a898ddfbb815fd5fe74.zip |
sh: pci: Drop asm-generic/pci.h, so we can use our own fixups.
The new PCI code wants its own bus<->resource mappings instead of the
generic equivalents, so drop the asm-generic include in preparation.
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Diffstat (limited to 'arch/sh/drivers/pci')
-rw-r--r-- | arch/sh/drivers/pci/pci.c | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/arch/sh/drivers/pci/pci.c b/arch/sh/drivers/pci/pci.c index 8aaacc99b710..6d659cd93c9d 100644 --- a/arch/sh/drivers/pci/pci.c +++ b/arch/sh/drivers/pci/pci.c @@ -72,6 +72,20 @@ 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; +} + void pcibios_align_resource(void *data, struct resource *res, resource_size_t size, resource_size_t align) __attribute__ ((weak)); |