diff options
author | Brad Smith <brad@cvs.openbsd.org> | 2006-10-23 02:29:21 +0000 |
---|---|---|
committer | Brad Smith <brad@cvs.openbsd.org> | 2006-10-23 02:29:21 +0000 |
commit | 1745390b02fa95943df5f809ac70a961e73b8924 (patch) | |
tree | e1a47c6e1403e435449c44b6aa3f67e29ae1a2c1 | |
parent | ba0d40e949d4f39d00c38701bc212ec5cf871159 (diff) |
use the Sundance TC9021 ids. this was done so that stge(4) will attach
properly with the sample boards and not have dmesg print unknown product.
-rw-r--r-- | sys/dev/pci/if_stge.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/pci/if_stge.c b/sys/dev/pci/if_stge.c index 6c183dcd9c5..66f18e2579b 100644 --- a/sys/dev/pci/if_stge.c +++ b/sys/dev/pci/if_stge.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_stge.c,v 1.32 2006/08/04 15:00:18 brad Exp $ */ +/* $OpenBSD: if_stge.c,v 1.33 2006/10/23 02:29:20 brad Exp $ */ /* $NetBSD: if_stge.c,v 1.27 2005/05/16 21:35:32 bouyer Exp $ */ /*- @@ -161,8 +161,8 @@ const struct pci_matchid stge_devices[] = { * The Sundance sample boards use the Sundance vendor ID, * but the Tamarack product ID. */ - { PCI_VENDOR_SUNDANCE, PCI_PRODUCT_TAMARACK_TC9021 }, - { PCI_VENDOR_SUNDANCE, PCI_PRODUCT_TAMARACK_TC9021_ALT }, + { PCI_VENDOR_SUNDANCE, PCI_PRODUCT_SUNDANCE_TC9021 }, + { PCI_VENDOR_SUNDANCE, PCI_PRODUCT_SUNDANCE_TC9021_ALT }, { PCI_VENDOR_DLINK, PCI_PRODUCT_DLINK_DGE550T }, { PCI_VENDOR_ANTARES, PCI_PRODUCT_ANTARES_TC9021 } }; |