From 5fcb3c3706d0f80ca8cf27b729d59f11ef2b9441 Mon Sep 17 00:00:00 2001 From: Niklas Hallqvist Date: Thu, 6 Jun 2002 19:33:01 +0000 Subject: match more cards --- sys/dev/pci/gdt_pci.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'sys/dev') diff --git a/sys/dev/pci/gdt_pci.c b/sys/dev/pci/gdt_pci.c index 079bccf0e80..fc36a5b008d 100644 --- a/sys/dev/pci/gdt_pci.c +++ b/sys/dev/pci/gdt_pci.c @@ -1,4 +1,4 @@ -/* $OpenBSD: gdt_pci.c,v 1.14 2002/03/14 01:26:58 millert Exp $ */ +/* $OpenBSD: gdt_pci.c,v 1.15 2002/06/06 19:33:00 niklas Exp $ */ /* * Copyright (c) 1999, 2000 Niklas Hallqvist. All rights reserved. @@ -156,10 +156,11 @@ gdt_pci_probe(parent, match, aux) struct pci_attach_args *pa = aux; if (PCI_VENDOR(pa->pa_id) == PCI_VENDOR_VORTEX && - PCI_PRODUCT(pa->pa_id) >= 0x100 && PCI_PRODUCT(pa->pa_id) <= 0x2ff) + PCI_PRODUCT(pa->pa_id) >= 0x100 && PCI_PRODUCT(pa->pa_id) <= 0x300) return (1); if (PCI_VENDOR(pa->pa_id) == PCI_VENDOR_INTEL && - PCI_PRODUCT(pa->pa_id) == PCI_PRODUCT_INTEL_GDT_RAID2) + (PCI_PRODUCT(pa->pa_id) == PCI_PRODUCT_INTEL_GDT_RAID1 || + PCI_PRODUCT(pa->pa_id) == PCI_PRODUCT_INTEL_GDT_RAID2)) return (1); return (0); } -- cgit v1.2.3