diff options
author | Gabor Juhos <juhosg@openwrt.org> | 2009-10-20 12:59:39 +0000 |
---|---|---|
committer | Gabor Juhos <juhosg@openwrt.org> | 2009-10-20 12:59:39 +0000 |
commit | a161e43710f1c4a31898633579bd67e4ad93888b (patch) | |
tree | 32e1aaee4487febe5465d5bcf405b41ba5bf300d /target/linux | |
parent | e9309396986e4d06f5fea047057c1b6d78ef670d (diff) | |
download | upstream-a161e43710f1c4a31898633579bd67e4ad93888b.tar.gz upstream-a161e43710f1c4a31898633579bd67e4ad93888b.tar.bz2 upstream-a161e43710f1c4a31898633579bd67e4ad93888b.zip |
ar71xx: fix PCI IRQ map of the WP543
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18099 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux')
-rw-r--r-- | target/linux/ar71xx/files/arch/mips/ar71xx/mach-wp543.c | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/target/linux/ar71xx/files/arch/mips/ar71xx/mach-wp543.c b/target/linux/ar71xx/files/arch/mips/ar71xx/mach-wp543.c index c644448144..fee4b98ba0 100644 --- a/target/linux/ar71xx/files/arch/mips/ar71xx/mach-wp543.c +++ b/target/linux/ar71xx/files/arch/mips/ar71xx/mach-wp543.c @@ -43,13 +43,17 @@ static struct spi_board_info wp543_spi_info[] = { static struct ar71xx_pci_irq wp543_pci_irqs[] __initdata = { { - .slot = 1, + .slot = 0, .pin = 1, .irq = AR71XX_PCI_IRQ_DEV0, }, { .slot = 1, - .pin = 2, + .pin = 1, .irq = AR71XX_PCI_IRQ_DEV1, + }, { + .slot = 2, + .pin = 1, + .irq = AR71XX_PCI_IRQ_DEV2, } }; |