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 b176f3a3e78..62ea1ab0504 100644 --- a/share/man/man4/rtsx.4 +++ b/share/man/man4/rtsx.4 @@ -1,9 +1,9 @@ -.\" $OpenBSD: rtsx.4,v 1.8 2015/04/27 09:07:49 stsp Exp $ +.\" $OpenBSD: rtsx.4,v 1.9 2016/04/26 00:21:27 jsg Exp $ .\" .\" Theo de Raadt, 2006. Public Domain. .\" Stefan Sperling, 2012. Public Domain. .\" -.Dd $Mdocdate: April 27 2015 $ +.Dd $Mdocdate: April 26 2016 $ .Dt RTSX 4 .Os .Sh NAME @@ -16,7 +16,7 @@ The .Nm driver provides support for the Realtek RTS5209, RTS5227, RTS5229, -RTS5249, RTL8402, RTL8411, and RTL8411B SD card readers. +RTS522A, RTS5249, RTL8402, RTL8411, 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 0f87e63a409..b4a0b8e8c55 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.12 2015/04/28 07:55:13 stsp Exp $ */ +/* $OpenBSD: rtsx_pci.c,v 1.13 2016/04/26 00:21:27 jsg 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_RTS522A || PCI_PRODUCT(pa->pa_id) == PCI_PRODUCT_REALTEK_RTS5249 || PCI_PRODUCT(pa->pa_id) == PCI_PRODUCT_REALTEK_RTL8402 || PCI_PRODUCT(pa->pa_id) == PCI_PRODUCT_REALTEK_RTL8411 || |