diff options
Diffstat (limited to 'sys/arch/alpha')
-rw-r--r-- | sys/arch/alpha/pci/sio.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/arch/alpha/pci/sio.c b/sys/arch/alpha/pci/sio.c index 45178486460..4779286f950 100644 --- a/sys/arch/alpha/pci/sio.c +++ b/sys/arch/alpha/pci/sio.c @@ -1,4 +1,4 @@ -/* $OpenBSD: sio.c,v 1.18 2001/02/05 17:14:40 art Exp $ */ +/* $OpenBSD: sio.c,v 1.19 2001/02/05 17:18:33 art Exp $ */ /* $NetBSD: sio.c,v 1.15 1996/12/05 01:39:36 cgd Exp $ */ /* @@ -153,7 +153,8 @@ sioattach(parent, self, aux) sc->sc_iot = pa->pa_iot; sc->sc_memt = pa->pa_memt; - sc->sc_haseisa = (PCI_PRODUCT(pa->pa_id) == PCI_PRODUCT_INTEL_PCEB); + sc->sc_haseisa = (PCI_VENDOR(pa->pa_id) == PC_VENDOR_INTEL && + PCI_PRODUCT(pa->pa_id) == PCI_PRODUCT_INTEL_PCEB); #ifdef EVCNT_COUNTERS evcnt_attach(&sc->sc_dv, "intr", &sio_intr_evcnt); |