diff options
author | 2003-01-21 13:04:59 +0000 | |
---|---|---|
committer | 2003-01-21 13:04:59 +0000 | |
commit | aa3251a2edc70ca5be9371d6495a9e86a19a3a9f (patch) | |
tree | 01ed615d201a3cd3327bf11cd4ed631dcca25d08 | |
parent | SO_SNDBUF needs int, not u_long (diff) | |
download | wireguard-openbsd-aa3251a2edc70ca5be9371d6495a9e86a19a3a9f.tar.xz wireguard-openbsd-aa3251a2edc70ca5be9371d6495a9e86a19a3a9f.zip |
do not need explicit match on intel; from alexander.guy@andern.org
-rw-r--r-- | sys/dev/pci/auich.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/sys/dev/pci/auich.c b/sys/dev/pci/auich.c index 78e07b9d9d3..ef3cf15829f 100644 --- a/sys/dev/pci/auich.c +++ b/sys/dev/pci/auich.c @@ -1,4 +1,4 @@ -/* $OpenBSD: auich.c,v 1.29 2003/01/16 14:20:27 mickey Exp $ */ +/* $OpenBSD: auich.c,v 1.30 2003/01/21 13:04:59 mickey Exp $ */ /* * Copyright (c) 2000,2001 Michael Shalayeff @@ -298,9 +298,6 @@ auich_match(parent, match, aux) struct pci_attach_args *pa = aux; int i; - if (PCI_VENDOR(pa->pa_id) != PCI_VENDOR_INTEL) - return 0; - for (i = sizeof(auich_devices)/sizeof(auich_devices[0]); i--;) if (PCI_VENDOR(pa->pa_id) == auich_devices[i].vendor && PCI_PRODUCT(pa->pa_id) == auich_devices[i].product) |