diff options
-rw-r--r-- | sys/dev/pci/if_re_pci.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/dev/pci/if_re_pci.c b/sys/dev/pci/if_re_pci.c index 4622ace541e..8e2f0cfb268 100644 --- a/sys/dev/pci/if_re_pci.c +++ b/sys/dev/pci/if_re_pci.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_re_pci.c,v 1.12 2006/06/24 02:36:15 brad Exp $ */ +/* $OpenBSD: if_re_pci.c,v 1.13 2006/06/27 07:09:49 brad Exp $ */ /* * Copyright (c) 2005 Peter Valchev <pvalchev@openbsd.org> @@ -64,8 +64,10 @@ struct re_pci_softc { }; const struct pci_matchid re_pci_devices[] = { + { PCI_VENDOR_REALTEK, PCI_PRODUCT_REALTEK_RT8101E }, { PCI_VENDOR_REALTEK, PCI_PRODUCT_REALTEK_RT8168 }, { PCI_VENDOR_REALTEK, PCI_PRODUCT_REALTEK_RT8169 }, + { PCI_VENDOR_REALTEK, PCI_PRODUCT_REALTEK_RT8169SC }, { PCI_VENDOR_COREGA, PCI_PRODUCT_COREGA_CGLAPCIGT }, { PCI_VENDOR_DLINK, PCI_PRODUCT_DLINK_DGE528T }, { PCI_VENDOR_USR2, PCI_PRODUCT_USR2_USR997902 }, |