diff options
author | 2013-01-16 04:42:44 +0000 | |
---|---|---|
committer | 2013-01-16 04:42:44 +0000 | |
commit | 87c5d0f1925b2c72fb970a84f56c88c4edb67e6b (patch) | |
tree | 1d10fed9bc04133614373269c19b76023b596dd9 /sys/dev/pci/if_rl_pci.c | |
parent | Add hardware VLAN tag/untag support for VT6105M chips. Help/feedback/ok (diff) | |
download | wireguard-openbsd-87c5d0f1925b2c72fb970a84f56c88c4edb67e6b.tar.xz wireguard-openbsd-87c5d0f1925b2c72fb970a84f56c88c4edb67e6b.zip |
Sort the PCI ids.
ok dtucker@ jsing@
Diffstat (limited to 'sys/dev/pci/if_rl_pci.c')
-rw-r--r-- | sys/dev/pci/if_rl_pci.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/sys/dev/pci/if_rl_pci.c b/sys/dev/pci/if_rl_pci.c index a5145f883d9..888c8116bd3 100644 --- a/sys/dev/pci/if_rl_pci.c +++ b/sys/dev/pci/if_rl_pci.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_rl_pci.c,v 1.21 2011/04/03 15:36:02 jasper Exp $ */ +/* $OpenBSD: if_rl_pci.c,v 1.22 2013/01/16 04:42:44 brad Exp $ */ /* * Copyright (c) 1997, 1998 @@ -98,20 +98,20 @@ struct cfattach rl_pci_ca = { }; const struct pci_matchid rl_pci_devices[] = { + { PCI_VENDOR_ABOCOM, PCI_PRODUCT_ABOCOM_FE2000VX }, { PCI_VENDOR_ACCTON, PCI_PRODUCT_ACCTON_5030 }, { PCI_VENDOR_ADDTRON, PCI_PRODUCT_ADDTRON_8139 }, + { PCI_VENDOR_COREGA, PCI_PRODUCT_COREGA_2CB_TXD }, + { PCI_VENDOR_COREGA, PCI_PRODUCT_COREGA_CB_TXD }, { PCI_VENDOR_DELTA, PCI_PRODUCT_DELTA_8139 }, { PCI_VENDOR_DLINK, PCI_PRODUCT_DLINK_530TXPLUS }, + { PCI_VENDOR_DLINK, PCI_PRODUCT_DLINK_DFE690TXD }, { PCI_VENDOR_NORTEL, PCI_PRODUCT_NORTEL_BS21 }, + { PCI_VENDOR_PLANEX, PCI_PRODUCT_PLANEX_FNW_3603_TX }, + { PCI_VENDOR_PLANEX, PCI_PRODUCT_PLANEX_FNW_3800_TX }, { PCI_VENDOR_REALTEK, PCI_PRODUCT_REALTEK_RT8129 }, - { PCI_VENDOR_REALTEK, PCI_PRODUCT_REALTEK_RT8139D }, - { PCI_VENDOR_ABOCOM, PCI_PRODUCT_ABOCOM_FE2000VX }, { PCI_VENDOR_REALTEK, PCI_PRODUCT_REALTEK_RT8138 }, - { PCI_VENDOR_COREGA, PCI_PRODUCT_COREGA_CB_TXD }, - { PCI_VENDOR_COREGA, PCI_PRODUCT_COREGA_2CB_TXD }, - { PCI_VENDOR_DLINK, PCI_PRODUCT_DLINK_DFE690TXD }, - { PCI_VENDOR_PLANEX, PCI_PRODUCT_PLANEX_FNW_3603_TX }, - { PCI_VENDOR_PLANEX, PCI_PRODUCT_PLANEX_FNW_3800_TX } + { PCI_VENDOR_REALTEK, PCI_PRODUCT_REALTEK_RT8139D } }; int |