Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit b9c4c609 authored by Christoph Dworzak's avatar Christoph Dworzak Committed by Jeff Garzik
Browse files

[PATCH] tulip: enable multiport NIC BIOS fixups for x86_64



A BIOS bug affecting some multiport tulip NICs requires an irq fixup
in tulip_core.c.  This has only been enabled for i686, but it is
needed for x86_64 as well.

Signed-off-by: default avatarJohn W. Linville <linville@tuxdriver.com>
Signed-off-by: default avatarJeff Garzik <jgarzik@pobox.com>
parent 38843888
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -1564,7 +1564,7 @@ static int __devinit tulip_init_one (struct pci_dev *pdev,
			    dev->dev_addr, 6);
			    dev->dev_addr, 6);
		}
		}
#endif
#endif
#if defined(__i386__)		/* Patch up x86 BIOS bug. */
#if defined(__i386__) || defined(__x86_64__)	/* Patch up x86 BIOS bug. */
		if (last_irq)
		if (last_irq)
			irq = last_irq;
			irq = last_irq;
#endif
#endif