diff options
| author | 2015-02-23 20:40:47 +0000 | |
|---|---|---|
| committer | 2015-02-23 20:40:47 +0000 | |
| commit | f15d9c7be298e3b7fd3f75437ce2d3ecdaee1470 (patch) | |
| tree | 5ffa8cde07f7bd512640b51795e017fa8452c36f /sys/dev/pci/rtsx_pci.c | |
| parent | fix a race condition by using a mux socket rather than an (diff) | |
| download | wireguard-openbsd-f15d9c7be298e3b7fd3f75437ce2d3ecdaee1470.tar.xz wireguard-openbsd-f15d9c7be298e3b7fd3f75437ce2d3ecdaee1470.zip | |
Add support for the RTL8411B chip
Verified working by Peter Hansteen
OK deraadt@, millert@, stsp@
Diffstat (limited to 'sys/dev/pci/rtsx_pci.c')
| -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 076bc0dd635..d3054328254 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.7 2014/08/19 17:55:03 phessler Exp $ */ +/* $OpenBSD: rtsx_pci.c,v 1.8 2015/02/23 20:40:47 phessler Exp $ */ /* * Copyright (c) 2006 Uwe Stuehler <uwe@openbsd.org> @@ -60,6 +60,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_RTL8411B || PCI_PRODUCT(pa->pa_id) == PCI_PRODUCT_REALTEK_RTL8402) return 1; |
