diff options
-rw-r--r-- | share/man/man4/rtsx.4 | 6 | ||||
-rw-r--r-- | sys/dev/pci/rtsx_pci.c | 3 |
2 files changed, 5 insertions, 4 deletions
diff --git a/share/man/man4/rtsx.4 b/share/man/man4/rtsx.4 index 8754654cd1a..4ce722a1239 100644 --- a/share/man/man4/rtsx.4 +++ b/share/man/man4/rtsx.4 @@ -1,9 +1,9 @@ -.\" $OpenBSD: rtsx.4,v 1.6 2014/05/18 10:52:17 stsp Exp $ +.\" $OpenBSD: rtsx.4,v 1.7 2015/02/23 20:40:47 phessler Exp $ .\" .\" Theo de Raadt, 2006. Public Domain. .\" Stefan Sperling, 2012. Public Domain. .\" -.Dd $Mdocdate: May 18 2014 $ +.Dd $Mdocdate: February 23 2015 $ .Dt RTSX 4 .Os .Sh NAME @@ -16,7 +16,7 @@ The .Nm driver provides support for the Realtek RTS5209, RTS5227, RTS5229, -and RTL8402 SD card readers. +RTL8402, and RTL8411B SD card readers. .Pp The .Xr sdmmc 4 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; |