summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorderaadt <deraadt@openbsd.org>2000-04-13 00:28:44 +0000
committerderaadt <deraadt@openbsd.org>2000-04-13 00:28:44 +0000
commit5f902f1fdf714627cd954d3bb84f9e8a7f1ab73c (patch)
treeef8a89b670c1bfac76a338c7e7763f9b175a2485
parentNeoMagic 256AV/ZX audio driver (diff)
downloadwireguard-openbsd-5f902f1fdf714627cd954d3bb84f9e8a7f1ab73c.tar.xz
wireguard-openbsd-5f902f1fdf714627cd954d3bb84f9e8a7f1ab73c.zip
match netsec 7751 card, and oh golly gee, will ya look at that, it's
unlock secret is all 0's as well, my, what a coincidence!
-rw-r--r--sys/dev/pci/hifn7751.c10
1 files changed, 9 insertions, 1 deletions
diff --git a/sys/dev/pci/hifn7751.c b/sys/dev/pci/hifn7751.c
index 165d58424fe..ceb99cbb814 100644
--- a/sys/dev/pci/hifn7751.c
+++ b/sys/dev/pci/hifn7751.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: hifn7751.c,v 1.29 2000/04/11 19:59:06 jason Exp $ */
+/* $OpenBSD: hifn7751.c,v 1.30 2000/04/13 00:28:44 deraadt Exp $ */
/*
* Invertex AEON / Hi/fn 7751 driver
@@ -122,6 +122,9 @@ hifn_probe(parent, match, aux)
if (PCI_VENDOR(pa->pa_id) == PCI_VENDOR_HIFN &&
PCI_PRODUCT(pa->pa_id) == PCI_PRODUCT_HIFN_7751)
return (1);
+ if (PCI_VENDOR(pa->pa_id) == PCI_VENDOR_NETSEC &&
+ PCI_PRODUCT(pa->pa_id) == PCI_PRODUCT_NETSEC_7751)
+ return (1);
return (0);
}
@@ -350,6 +353,11 @@ struct pci2id {
char card_id[13];
} pci2id[] = {
{
+ PCI_VENDOR_NETSEC,
+ PCI_PRODUCT_NETSEC_7751,
+ { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00 }
+ }, {
PCI_VENDOR_INVERTEX,
PCI_PRODUCT_INVERTEX_AEON,
{ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,