From: Lennert Buytenhek Date: Sun, 29 Oct 2006 13:15:10 +0000 (+0100) Subject: [ARM] 3913/1: n2100: fix IRQ routing for second ethernet port X-Git-Tag: v3.12-rc1~32144^2~7^2~5^2~1 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=811c9a4b618ffc7de097490f8dc61b43b8464b9c;p=kernel%2Fkernel-generic.git [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 Signed-off-by: Russell King --- 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;