Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 27 Feb 2019 17:30:28 +0000 (UTC)
From:      Emmanuel Vadot <manu@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r344627 - head/sys/dev/mmc/host
Message-ID:  <201902271730.x1RHUScE009099@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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},
 };
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201902271730.x1RHUScE009099>