diff options
author | Lennert Buytenhek <buytenh@org.rmk.(none)> | 2006-10-29 14:15:10 +0100 |
---|---|---|
committer | Russell King <rmk+kernel@arm.linux.org.uk> | 2006-10-29 16:52:17 +0000 |
commit | 811c9a4b618ffc7de097490f8dc61b43b8464b9c (patch) | |
tree | 22a230c0a93b784c4bb0c68798af1221ae0f0077 /arch/arm/mach-iop32x | |
parent | 51342d7126342e1f1a40cd96a5798a3cfd6136eb (diff) | |
download | op-kernel-dev-811c9a4b618ffc7de097490f8dc61b43b8464b9c.zip op-kernel-dev-811c9a4b618ffc7de097490f8dc61b43b8464b9c.tar.gz |
[ARM] 3913/1: n2100: fix IRQ routing for second ethernet port
The second ethernet port on the Thecus n2100 was incorrectly assigned
to XINT1 instead of the correct XINT3 (PCI INTB instead of INTD), which
caused that port to be non-functional.
Signed-off-by: Lennert Buytenhek <buytenh@wantstofly.org>
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'arch/arm/mach-iop32x')
-rw-r--r-- | arch/arm/mach-iop32x/n2100.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-iop32x/n2100.c b/arch/arm/mach-iop32x/n2100.c index a2c94a4..2499a77 100644 --- a/arch/arm/mach-iop32x/n2100.c +++ b/arch/arm/mach-iop32x/n2100.c @@ -85,7 +85,7 @@ n2100_pci_map_irq(struct pci_dev *dev, u8 slot, u8 pin) irq = IRQ_IOP32X_XINT0; } else if (PCI_SLOT(dev->devfn) == 2) { /* RTL8110SB #2 */ - irq = IRQ_IOP32X_XINT1; + irq = IRQ_IOP32X_XINT3; } else if (PCI_SLOT(dev->devfn) == 3) { /* Sil3512 */ irq = IRQ_IOP32X_XINT2; |