diff options
author | 2015-03-14 16:42:30 +0000 | |
---|---|---|
committer | 2015-03-14 16:42:30 +0000 | |
commit | f85a24beab58a8cf0f32278b672c6827c7cdef11 (patch) | |
tree | 88c491c7d1da6b2a2f1d62702cddc5bc41fab4c1 | |
parent | Switch all the license blocks to the standard OpenBSD/ISC license. (diff) | |
download | wireguard-openbsd-f85a24beab58a8cf0f32278b672c6827c7cdef11.tar.xz wireguard-openbsd-f85a24beab58a8cf0f32278b672c6827c7cdef11.zip |
RTL8411 works also, according to tiix@openmailbox
-rw-r--r-- | sys/dev/pci/rtsx_pci.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/dev/pci/rtsx_pci.c b/sys/dev/pci/rtsx_pci.c index dd0bb8c88d4..ef8c042ee6a 100644 --- a/sys/dev/pci/rtsx_pci.c +++ b/sys/dev/pci/rtsx_pci.c @@ -1,4 +1,4 @@ -/* $OpenBSD: rtsx_pci.c,v 1.9 2015/03/14 03:38:49 jsg Exp $ */ +/* $OpenBSD: rtsx_pci.c,v 1.10 2015/03/14 16:42:30 deraadt Exp $ */ /* * Copyright (c) 2006 Uwe Stuehler <uwe@openbsd.org> @@ -59,6 +59,7 @@ rtsx_pci_match(struct device *parent, void *match, void *aux) if (PCI_PRODUCT(pa->pa_id) == PCI_PRODUCT_REALTEK_RTS5209 || PCI_PRODUCT(pa->pa_id) == PCI_PRODUCT_REALTEK_RTS5227 || PCI_PRODUCT(pa->pa_id) == PCI_PRODUCT_REALTEK_RTS5229 || + PCI_PRODUCT(pa->pa_id) == PCI_PRODUCT_REALTEK_RTL8411 || PCI_PRODUCT(pa->pa_id) == PCI_PRODUCT_REALTEK_RTL8411B || PCI_PRODUCT(pa->pa_id) == PCI_PRODUCT_REALTEK_RTL8402) return 1; |