Module Name:    src
Committed By:   jmcneill
Date:           Mon Apr 27 23:06:34 UTC 2020

Modified Files:
        src/share/man/man4: rtsx.4
        src/sys/dev/pci: rtsx_pci.c

Log Message:
Add support for Realtek RTS522A


To generate a diff of this commit:
cvs rdiff -u -r1.5 -r1.6 src/share/man/man4/rtsx.4
cvs rdiff -u -r1.8 -r1.9 src/sys/dev/pci/rtsx_pci.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/share/man/man4/rtsx.4
diff -u src/share/man/man4/rtsx.4:1.5 src/share/man/man4/rtsx.4:1.6
--- src/share/man/man4/rtsx.4:1.5	Tue Apr 24 18:35:56 2018
+++ src/share/man/man4/rtsx.4	Mon Apr 27 23:06:34 2020
@@ -1,10 +1,10 @@
-.\"	$NetBSD: rtsx.4,v 1.5 2018/04/24 18:35:56 maya Exp $
+.\"	$NetBSD: rtsx.4,v 1.6 2020/04/27 23:06:34 jmcneill Exp $
 .\"	$OpenBSD: rtsx.4,v 1.6 2014/05/18 10:52:17 stsp Exp $
 .\"
 .\" Theo de Raadt, 2006. Public Domain.
 .\" Stefan Sperling, 2012. Public Domain.
 .\"
-.Dd April 24, 2018
+.Dd April 27, 2020
 .Dt RTSX 4
 .Os
 .Sh NAME
@@ -17,7 +17,7 @@
 The
 .Nm
 driver provides support for the Realtek RTS5209, RTS5227, RTS5229,
-RTS525A, RTL8402, RTL8411 and RTL8411B SD card readers.
+RTS522A, RTS525A, RTL8402, RTL8411 and RTL8411B SD card readers.
 .Pp
 The
 .Xr sdmmc 4

Index: src/sys/dev/pci/rtsx_pci.c
diff -u src/sys/dev/pci/rtsx_pci.c:1.8 src/sys/dev/pci/rtsx_pci.c:1.9
--- src/sys/dev/pci/rtsx_pci.c:1.8	Sun Dec  9 11:14:02 2018
+++ src/sys/dev/pci/rtsx_pci.c	Mon Apr 27 23:06:34 2020
@@ -1,4 +1,4 @@
-/*	$NetBSD: rtsx_pci.c,v 1.8 2018/12/09 11:14:02 jdolecek Exp $	*/
+/*	$NetBSD: rtsx_pci.c,v 1.9 2020/04/27 23:06:34 jmcneill Exp $	*/
 /*	$OpenBSD: rtsx_pci.c,v 1.7 2014/08/19 17:55:03 phessler Exp $	*/
 
 
@@ -20,7 +20,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: rtsx_pci.c,v 1.8 2018/12/09 11:14:02 jdolecek Exp $");
+__KERNEL_RCSID(0, "$NetBSD: rtsx_pci.c,v 1.9 2020/04/27 23:06:34 jmcneill Exp $");
 
 #include <sys/param.h>
 #include <sys/device.h>
@@ -79,6 +79,7 @@ rtsx_pci_match(device_t parent, cfdata_t
 	case PCI_PRODUCT_REALTEK_RTS5209:
 	case PCI_PRODUCT_REALTEK_RTS5227:
 	case PCI_PRODUCT_REALTEK_RTS5229:
+	case PCI_PRODUCT_REALTEK_RTS522A:
 	case PCI_PRODUCT_REALTEK_RTS525A:
 	case PCI_PRODUCT_REALTEK_RTL8402:
 	case PCI_PRODUCT_REALTEK_RTL8411:

Reply via email to