diff options
author | Paul Mundt <lethal@linux-sh.org> | 2009-04-17 10:21:36 +0200 |
---|---|---|
committer | Paul Mundt <lethal@linux-sh.org> | 2009-04-17 10:21:36 +0200 |
commit | 4c7a47de897e89c25a40e228ac5319cbac7257fe (patch) | |
tree | c5fe696011112d42f3ae279de4b679e7d4d140fa /arch/sh/drivers/pci/ops-sdk7780.c | |
parent | sh: pci: Consolidate PCI I/O and mem window definitions for SH7780. (diff) | |
download | linux-4c7a47de897e89c25a40e228ac5319cbac7257fe.tar.xz linux-4c7a47de897e89c25a40e228ac5319cbac7257fe.zip |
sh: pci: Kill off platform-specific multi-window mappings.
Commit 68b42d1b548be1840aff7122fdebeb804daf0fa3 ("sh: sh7785lcr: Map
whole PCI address space.") changed around the semantics of how various
chip-selects are made accessible to PCI. Now that there is a single
large mapping covering from CS0-CS6, there is no longer any need to
do multi-window mapping. Subsequently, all of the differing
implementations can be consolidated in to pci-sh7780.
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Diffstat (limited to 'arch/sh/drivers/pci/ops-sdk7780.c')
-rw-r--r-- | arch/sh/drivers/pci/ops-sdk7780.c | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/arch/sh/drivers/pci/ops-sdk7780.c b/arch/sh/drivers/pci/ops-sdk7780.c index 570fd71f6937..1d9a91bcfb7d 100644 --- a/arch/sh/drivers/pci/ops-sdk7780.c +++ b/arch/sh/drivers/pci/ops-sdk7780.c @@ -33,20 +33,3 @@ int __init pcibios_map_platform_irq(struct pci_dev *pdev, u8 slot, u8 pin) { return sdk7780_irq_tab[pin-1][slot]; } - -static struct sh4_pci_address_map sdk7780_pci_map = { - .window0 = { - .base = SH7780_CS2_BASE_ADDR, - .size = 0x04000000, - }, - .window1 = { - .base = SH7780_CS3_BASE_ADDR, - .size = 0x04000000, - }, -}; - -int __init pcibios_init_platform(void) -{ - printk(KERN_INFO "SH7780 PCI: Finished initializing PCI controller\n"); - return sh7780_pcic_init(&sdk7780_pci_map); -} |