diff options
author | Artur Grabowski <art@cvs.openbsd.org> | 2001-02-05 17:25:43 +0000 |
---|---|---|
committer | Artur Grabowski <art@cvs.openbsd.org> | 2001-02-05 17:25:43 +0000 |
commit | 660df56eb862e33850f6274287568a2cf95961a5 (patch) | |
tree | dff34fa7aa95513e307cf5e7a5869bb240dd9cc9 | |
parent | b2e4fb64f5edda956ef4b25a0e437b290093271f (diff) |
No, Intel is not a PC_VENDOR. Intel is a PCI_VENDOR.
-rw-r--r-- | sys/arch/alpha/pci/sio.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/alpha/pci/sio.c b/sys/arch/alpha/pci/sio.c index 4779286f950..967b9ef33fd 100644 --- a/sys/arch/alpha/pci/sio.c +++ b/sys/arch/alpha/pci/sio.c @@ -1,4 +1,4 @@ -/* $OpenBSD: sio.c,v 1.19 2001/02/05 17:18:33 art Exp $ */ +/* $OpenBSD: sio.c,v 1.20 2001/02/05 17:25:42 art Exp $ */ /* $NetBSD: sio.c,v 1.15 1996/12/05 01:39:36 cgd Exp $ */ /* @@ -153,7 +153,7 @@ sioattach(parent, self, aux) sc->sc_iot = pa->pa_iot; sc->sc_memt = pa->pa_memt; - sc->sc_haseisa = (PCI_VENDOR(pa->pa_id) == PC_VENDOR_INTEL && + sc->sc_haseisa = (PCI_VENDOR(pa->pa_id) == PCI_VENDOR_INTEL && PCI_PRODUCT(pa->pa_id) == PCI_PRODUCT_INTEL_PCEB); #ifdef EVCNT_COUNTERS |