diff options
author | Brad Smith <brad@cvs.openbsd.org> | 2007-10-23 07:24:20 +0000 |
---|---|---|
committer | Brad Smith <brad@cvs.openbsd.org> | 2007-10-23 07:24:20 +0000 |
commit | 11f19bb105634509ad475551d356ab84d07f835b (patch) | |
tree | 605dfc470561c936c9b781e7ff0084828f3348da /sys/dev/pci/if_stge.c | |
parent | 0d4c75d9ead0c3dc2bcd83ae0e19133b97ff877d (diff) |
Sort the PCI id table and remove a comment which is no longer true.
ok dlg@
Diffstat (limited to 'sys/dev/pci/if_stge.c')
-rw-r--r-- | sys/dev/pci/if_stge.c | 14 |
1 files changed, 5 insertions, 9 deletions
diff --git a/sys/dev/pci/if_stge.c b/sys/dev/pci/if_stge.c index 1a621c0e1f6..6b5509bd0fe 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.37 2007/10/22 23:00:45 fgsch Exp $ */ +/* $OpenBSD: if_stge.c,v 1.38 2007/10/23 07:24:19 brad Exp $ */ /* $NetBSD: if_stge.c,v 1.27 2005/05/16 21:35:32 bouyer Exp $ */ /*- @@ -153,18 +153,14 @@ const struct mii_bitbang_ops stge_mii_bitbang_ops = { * Devices supported by this driver. */ const struct pci_matchid stge_devices[] = { + { PCI_VENDOR_ANTARES, PCI_PRODUCT_ANTARES_TC9021 }, + { PCI_VENDOR_DLINK, PCI_PRODUCT_DLINK_DGE550T }, { PCI_VENDOR_SUNDANCE, PCI_PRODUCT_SUNDANCE_ST1023 }, { PCI_VENDOR_SUNDANCE, PCI_PRODUCT_SUNDANCE_ST2021 }, - { PCI_VENDOR_TAMARACK, PCI_PRODUCT_TAMARACK_TC9021 }, - { PCI_VENDOR_TAMARACK, PCI_PRODUCT_TAMARACK_TC9021_ALT }, - /* - * The Sundance sample boards use the Sundance vendor ID, - * but the Tamarack product ID. - */ { 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 } + { PCI_VENDOR_TAMARACK, PCI_PRODUCT_TAMARACK_TC9021 }, + { PCI_VENDOR_TAMARACK, PCI_PRODUCT_TAMARACK_TC9021_ALT } }; int |