diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2000-04-13 00:28:45 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2000-04-13 00:28:45 +0000 |
commit | 124511a62f06dda0c844714d56771030b1bcde23 (patch) | |
tree | 23dda047c43969f502f96079111c002227db1779 /sys/dev/pci | |
parent | 5a085c5f288525efc366f62a80996414431bc9ed (diff) |
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!
Diffstat (limited to 'sys/dev/pci')
-rw-r--r-- | sys/dev/pci/hifn7751.c | 10 |
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, |