Skip to content

Commit

Permalink
sis190 check for ISA bridge on SiS966
Browse files Browse the repository at this point in the history
sis190 driver assumes to find ISA only on SiS965.
similar fix is in sis900 driver, see bug report
http://bugs.debian.org/435547

Signed-off-by: maximilian attems <max@stro.at>
Signed-off-by: Jeff Garzik <jeff@garzik.org>
  • Loading branch information
Neil Muller authored and Jeff Garzik committed Aug 7, 2007
1 parent 5845b67 commit 8eb7ad6
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions drivers/net/sis190.c
Original file line number Diff line number Diff line change
Expand Up @@ -1593,6 +1593,9 @@ static int __devinit sis190_get_mac_addr_from_apc(struct pci_dev *pdev,
pci_name(pdev));

isa_bridge = pci_get_device(PCI_VENDOR_ID_SI, 0x0965, NULL);
if (!isa_bridge)
isa_bridge = pci_get_device(PCI_VENDOR_ID_SI, 0x0966, NULL);

if (!isa_bridge) {
net_probe(tp, KERN_INFO "%s: Can not find ISA bridge.\n",
pci_name(pdev));
Expand Down

0 comments on commit 8eb7ad6

Please sign in to comment.