diff options
author | 2007-03-31 23:42:18 +0000 | |
---|---|---|
committer | 2007-03-31 23:42:18 +0000 | |
commit | e02860ee7f977bb7dae724931158816d9147b4e1 (patch) | |
tree | 3e8bf884ac0a0dda4b70eeca804a29c909005ec2 | |
parent | Move extraction / verification of PHY and radio values into own functions. (diff) | |
download | wireguard-openbsd-e02860ee7f977bb7dae724931158816d9147b4e1.tar.xz wireguard-openbsd-e02860ee7f977bb7dae724931158816d9147b4e1.zip |
Match on the 3132 as well.
ok dlg@
-rw-r--r-- | sys/dev/pci/sili_pci.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/dev/pci/sili_pci.c b/sys/dev/pci/sili_pci.c index 1c5eb10b345..d0a6ecdeac2 100644 --- a/sys/dev/pci/sili_pci.c +++ b/sys/dev/pci/sili_pci.c @@ -1,4 +1,4 @@ -/* $OpenBSD: sili_pci.c,v 1.3 2007/03/31 03:11:38 dlg Exp $ */ +/* $OpenBSD: sili_pci.c,v 1.4 2007/03/31 23:42:18 jsg Exp $ */ /* * Copyright (c) 2007 David Gwynne <dlg@openbsd.org> @@ -58,7 +58,8 @@ struct sili_device { const struct sili_device *sili_lookup(struct pci_attach_args *); static const struct sili_device sili_devices[] = { - { PCI_VENDOR_CMDTECH, PCI_PRODUCT_CMDTECH_3124, 4 } + { PCI_VENDOR_CMDTECH, PCI_PRODUCT_CMDTECH_3124, 4 }, + { PCI_VENDOR_CMDTECH, PCI_PRODUCT_CMDTECH_3132, 2 } }; const struct sili_device * |