diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2004-01-12 19:01:55 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2004-01-12 19:01:55 +0000 |
commit | d536ad436ec94177cf155dd869cfb1ed387063f6 (patch) | |
tree | dad078a81f3972eaa0a5cb4fd4f332300a3938a5 | |
parent | e6299052216f6f6b9677ec92bed99eda893a72fa (diff) |
match both ALI ISA bridges (more fallout); ok millert
-rw-r--r-- | sys/arch/alpha/pci/sio.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/sys/arch/alpha/pci/sio.c b/sys/arch/alpha/pci/sio.c index dcacd7049ca..6dc2a6f24d8 100644 --- a/sys/arch/alpha/pci/sio.c +++ b/sys/arch/alpha/pci/sio.c @@ -1,4 +1,4 @@ -/* $OpenBSD: sio.c,v 1.27 2002/03/14 01:26:27 millert Exp $ */ +/* $OpenBSD: sio.c,v 1.28 2004/01/12 19:01:54 deraadt Exp $ */ /* $NetBSD: sio.c,v 1.15 1996/12/05 01:39:36 cgd Exp $ */ /* @@ -124,6 +124,10 @@ siomatch(parent, match, aux) return (1); if (PCI_VENDOR(pa->pa_id) == PCI_VENDOR_ALI && + PCI_PRODUCT(pa->pa_id) == PCI_PRODUCT_ALI_M1533) + return(1); + + if (PCI_VENDOR(pa->pa_id) == PCI_VENDOR_ALI && PCI_PRODUCT(pa->pa_id) == PCI_PRODUCT_ALI_M1543) return(1); return (0); |