svn commit: r344627 - head/sys/dev/mmc/host

Emmanuel Vadot manu at FreeBSD.org
Wed Feb 27 17:30:29 UTC 2019


Author: manu
Date: Wed Feb 27 17:30:28 2019
New Revision: 344627
URL: https://svnweb.freebsd.org/changeset/base/344627

Log:
  mmc: dwmmc: Match on "rockchip,rk3288-dw-mshc" compatible
  
  This is the common denominator for rockchip compatible from RK3288 to RK3399.
  The other compatible are generally present in the DTS but the controllers
  are the same.
  
  MFC after:	1 week

Modified:
  head/sys/dev/mmc/host/dwmmc_rockchip.c

Modified: head/sys/dev/mmc/host/dwmmc_rockchip.c
==============================================================================
--- head/sys/dev/mmc/host/dwmmc_rockchip.c	Wed Feb 27 17:29:38 2019	(r344626)
+++ head/sys/dev/mmc/host/dwmmc_rockchip.c	Wed Feb 27 17:30:28 2019	(r344627)
@@ -49,12 +49,12 @@ __FBSDID("$FreeBSD$");
 
 enum RKTYPE {
 	RK2928 = 1,
-	RK3328,
+	RK3288,
 };
 
 static struct ofw_compat_data compat_data[] = {
 	{"rockchip,rk2928-dw-mshc",	RK2928},
-	{"rockchip,rk3328-dw-mshc",	RK3328},
+	{"rockchip,rk3288-dw-mshc",	RK3288},
 	{NULL,				0},
 };
 


More information about the svn-src-head mailing list