From 8b961a86be378f9dccb62b79de7fe25d9ef1d8a5 Mon Sep 17 00:00:00 2001 From: Michael Shalayeff Date: Sat, 23 Jun 2001 01:44:31 +0000 Subject: enable attaching on pci35x models, seems to work ok --- sys/dev/pci/if_an_pci.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/sys/dev/pci/if_an_pci.c b/sys/dev/pci/if_an_pci.c index 4f6c7e71dd7..1b9c9ad2917 100644 --- a/sys/dev/pci/if_an_pci.c +++ b/sys/dev/pci/if_an_pci.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_an_pci.c,v 1.3 2001/06/12 15:40:31 niklas Exp $ */ +/* $OpenBSD: if_an_pci.c,v 1.4 2001/06/23 01:44:30 mickey Exp $ */ /* * Copyright (c) 1997, 1998, 1999 @@ -95,7 +95,8 @@ an_pci_match(parent, match, aux) struct pci_attach_args *pa = aux; if (PCI_VENDOR(pa->pa_id) == PCI_VENDOR_AIRONET && - (PCI_PRODUCT(pa->pa_id) == PCI_PRODUCT_AIRONET_PC4500 || + (PCI_PRODUCT(pa->pa_id) == PCI_PRODUCT_AIRONET_PCI352 || + PCI_PRODUCT(pa->pa_id) == PCI_PRODUCT_AIRONET_PC4500 || PCI_PRODUCT(pa->pa_id) == PCI_PRODUCT_AIRONET_PC4800)) return(1); -- cgit v1.2.3