Date: Mon, 13 Nov 2017 18:53:41 +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: r325768 - head/sys/arm/broadcom/bcm2835 Message-ID: <201711131853.vADIrfvm081869@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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 } };
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201711131853.vADIrfvm081869>