summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorderaadt <deraadt@openbsd.org>2004-01-12 19:01:54 +0000
committerderaadt <deraadt@openbsd.org>2004-01-12 19:01:54 +0000
commitfcb50aab85a68894606bbae35c48b380ea818680 (patch)
treef1b302ce61d6b19ab246e2a8c5fbde76086755ce
parenttypo from jmc@ (diff)
downloadwireguard-openbsd-fcb50aab85a68894606bbae35c48b380ea818680.tar.xz
wireguard-openbsd-fcb50aab85a68894606bbae35c48b380ea818680.zip
match both ALI ISA bridges (more fallout); ok millert
-rw-r--r--sys/arch/alpha/pci/sio.c6
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);