diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2015-03-14 16:42:31 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2015-03-14 16:42:31 +0000 |
commit | bc67f27f5b0aa660d974bfb1b9596b3d966a8a5c (patch) | |
tree | e3e79b8d50923de7a52aad4310e2cbd7e3bfcb7e /sys/dev/pci | |
parent | 306ad58cdc8b2361c19227e7f2dbb33d9b668e78 (diff) |
RTL8411 works also, according to tiix@openmailbox
Diffstat (limited to 'sys/dev/pci')
-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; |