Skip to content

Commit

Permalink
[PATCH] tulip: enable multiport NIC BIOS fixups for x86_64
Browse files Browse the repository at this point in the history
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: John W. Linville <linville@tuxdriver.com>
Signed-off-by: Jeff Garzik <jgarzik@pobox.com>
  • Loading branch information
Christoph Dworzak authored and Jeff Garzik committed Jan 9, 2006
1 parent 3884388 commit b9c4c60
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/net/tulip/tulip_core.c
Original file line number Diff line number Diff line change
Expand Up @@ -1564,7 +1564,7 @@ static int __devinit tulip_init_one (struct pci_dev *pdev,
dev->dev_addr, 6);
}
#endif
#if defined(__i386__) /* Patch up x86 BIOS bug. */
#if defined(__i386__) || defined(__x86_64__) /* Patch up x86 BIOS bug. */
if (last_irq)
irq = last_irq;
#endif
Expand Down

0 comments on commit b9c4c60

Please sign in to comment.