diff options
author | Eric Jackson <ericj@cvs.openbsd.org> | 2001-03-07 01:03:52 +0000 |
---|---|---|
committer | Eric Jackson <ericj@cvs.openbsd.org> | 2001-03-07 01:03:52 +0000 |
commit | 201e52988f4d4ece2612f7a06a94faeb4bd9d779 (patch) | |
tree | eb89905094f52993fe99316519094afaf0d68714 /sys/arch/alpha | |
parent | 847ff76038b62f7e72c79184597cd69b15c248d3 (diff) |
DS10 uses Acer M1543 pci<->isa bridge, so match it in siomatch()
Diffstat (limited to 'sys/arch/alpha')
-rw-r--r-- | sys/arch/alpha/pci/sio.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/sys/arch/alpha/pci/sio.c b/sys/arch/alpha/pci/sio.c index 1c3e2c52f54..980192fafcf 100644 --- a/sys/arch/alpha/pci/sio.c +++ b/sys/arch/alpha/pci/sio.c @@ -1,4 +1,4 @@ -/* $OpenBSD: sio.c,v 1.21 2001/02/06 19:07:11 art Exp $ */ +/* $OpenBSD: sio.c,v 1.22 2001/03/07 01:03:51 ericj Exp $ */ /* $NetBSD: sio.c,v 1.15 1996/12/05 01:39:36 cgd Exp $ */ /* @@ -117,6 +117,9 @@ siomatch(parent, match, aux) PCI_PRODUCT(pa->pa_id) == PCI_PRODUCT_INTEL_SIO) return (1); + if (PCI_VENDOR(pa->pa_id) == PCI_VENDOR_ALI && + PCI_PRODUCT(pa->pa_id) == PCI_PRODUCT_ALI_M1543) + return(1); return (0); } |