diff options
-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); |