diff options
author | Jonathan Gray <jsg@cvs.openbsd.org> | 2007-03-31 23:42:19 +0000 |
---|---|---|
committer | Jonathan Gray <jsg@cvs.openbsd.org> | 2007-03-31 23:42:19 +0000 |
commit | 1911b07dcd6fbcc28112e83ec8d04fcdb0fadbe3 (patch) | |
tree | 9599ea590369a579330871a11f3102fed1ee714b /sys | |
parent | a1255cdc06af18032ca8db26a86f168cdbcfba8b (diff) |
Match on the 3132 as well.
ok dlg@
Diffstat (limited to 'sys')
-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 * |