diff options
author | Gabor Juhos <juhosg@openwrt.org> | 2013-02-07 19:28:15 +0000 |
---|---|---|
committer | John Crispin <blogic@openwrt.org> | 2013-02-17 01:25:40 +0100 |
commit | 42cb60d1fab4c81ef24876d985e08fc5bb899e41 (patch) | |
tree | 817e9aa87d280c6e66c9403e42652aa861599045 /arch/mips/ath79 | |
parent | f18118a868f1f7e7bdfea176a204fcc44fae2985 (diff) | |
download | linux-3.10-42cb60d1fab4c81ef24876d985e08fc5bb899e41.tar.gz linux-3.10-42cb60d1fab4c81ef24876d985e08fc5bb899e41.tar.bz2 linux-3.10-42cb60d1fab4c81ef24876d985e08fc5bb899e41.zip |
MIPS: pci-ar71xx: remove static PCI IO/MEM resources
Signed-off-by: Gabor Juhos <juhosg@openwrt.org>
Patchwork: http://patchwork.linux-mips.org/patch/4927/
Signed-off-by: John Crispin <blogic@openwrt.org>
Diffstat (limited to 'arch/mips/ath79')
-rw-r--r-- | arch/mips/ath79/pci.c | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/arch/mips/ath79/pci.c b/arch/mips/ath79/pci.c index 942e3f9184f..ea8aa10893d 100644 --- a/arch/mips/ath79/pci.c +++ b/arch/mips/ath79/pci.c @@ -117,7 +117,7 @@ static struct platform_device * ath79_register_pci_ar71xx(void) { struct platform_device *pdev; - struct resource res[2]; + struct resource res[4]; memset(res, 0, sizeof(res)); @@ -130,6 +130,16 @@ ath79_register_pci_ar71xx(void) res[1].start = ATH79_CPU_IRQ_IP2; res[1].end = ATH79_CPU_IRQ_IP2; + res[2].name = "io_base"; + res[2].flags = IORESOURCE_IO; + res[2].start = 0; + res[2].end = 0; + + res[3].name = "mem_base"; + res[3].flags = IORESOURCE_MEM; + res[3].start = AR71XX_PCI_MEM_BASE; + res[3].end = AR71XX_PCI_MEM_BASE + AR71XX_PCI_MEM_SIZE - 1; + pdev = platform_device_register_simple("ar71xx-pci", -1, res, ARRAY_SIZE(res)); return pdev; |