diff options
author | 2001-06-23 01:44:30 +0000 | |
---|---|---|
committer | 2001-06-23 01:44:30 +0000 | |
commit | 0e9d5c28e2fc506c7d7baee5a5eb4207519e8f35 (patch) | |
tree | ff72f6ee59877dc462611af221c6cf0e20c054d7 | |
parent | hifn now supports up to 256K (diff) | |
download | wireguard-openbsd-0e9d5c28e2fc506c7d7baee5a5eb4207519e8f35.tar.xz wireguard-openbsd-0e9d5c28e2fc506c7d7baee5a5eb4207519e8f35.zip |
enable attaching on pci35x models, seems to work ok
-rw-r--r-- | sys/dev/pci/if_an_pci.c | 5 |
1 files 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); |