svn commit: r325768 - head/sys/arm/broadcom/bcm2835

Emmanuel Vadot manu at FreeBSD.org
Mon Nov 13 18:53:42 UTC 2017


Author: manu
Date: Mon Nov 13 18:53:41 2017
New Revision: 325768
URL: https://svnweb.freebsd.org/changeset/base/325768

Log:
  arm: rpi2: Fix cpufreq(4)
  
  Since r324184 the root node compatible for rpi2 is "brcm,bcm2836", add
  it to the compatible list of bcm2835_cpufreq.
  
  Tested On: RPI2 v1.1 RPI2 v1.2
  
  Reported by:	many on freebsd-arm@

Modified:
  head/sys/arm/broadcom/bcm2835/bcm2835_cpufreq.c

Modified: head/sys/arm/broadcom/bcm2835/bcm2835_cpufreq.c
==============================================================================
--- head/sys/arm/broadcom/bcm2835/bcm2835_cpufreq.c	Mon Nov 13 18:16:26 2017	(r325767)
+++ head/sys/arm/broadcom/bcm2835/bcm2835_cpufreq.c	Mon Nov 13 18:53:41 2017	(r325768)
@@ -126,6 +126,7 @@ static struct ofw_compat_data compat_data[] = {
 	{ "broadcom,bcm2835-vc",	1 },
 	{ "broadcom,bcm2708-vc",	1 },
 	{ "brcm,bcm2709",	1 },
+	{ "brcm,bcm2836",	1 },
 	{ NULL, 0 }
 };
 


More information about the svn-src-all mailing list