aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/bhnd
diff options
context:
space:
mode:
authorLandon J. Fuller <landonf@FreeBSD.org>2018-01-04 19:47:01 +0000
committerLandon J. Fuller <landonf@FreeBSD.org>2018-01-04 19:47:01 +0000
commit07a0a243ec6654964e7b0e1d312a7603b07f8872 (patch)
tree4c4526a5286ec87b77b43c442f106ef5891a4b3b /sys/dev/bhnd
parent33937731e7feaedb77f982ced15dd5c5afae1831 (diff)
downloadsrc-07a0a243ec6654964e7b0e1d312a7603b07f8872.tar.gz
src-07a0a243ec6654964e7b0e1d312a7603b07f8872.zip
bhnd(4): Add missing BCM4312 backplane clock speed entry.
The default 80MHz clock speed returned by bhnd_pmu_si_clock() was already correct; this just prevents the "No backplane clock specified" warning printf from being emitted when querying backplane clock speed. Sponsored by: The FreeBSD Foundation
Notes
Notes: svn path=/head/; revision=327558
Diffstat (limited to 'sys/dev/bhnd')
-rw-r--r--sys/dev/bhnd/cores/pmu/bhnd_pmu_subr.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/sys/dev/bhnd/cores/pmu/bhnd_pmu_subr.c b/sys/dev/bhnd/cores/pmu/bhnd_pmu_subr.c
index 85943306b806..7844c4e3613e 100644
--- a/sys/dev/bhnd/cores/pmu/bhnd_pmu_subr.c
+++ b/sys/dev/bhnd/cores/pmu/bhnd_pmu_subr.c
@@ -2394,6 +2394,7 @@ bhnd_pmu_si_clock(struct bhnd_pmu_query *sc)
clock = bhnd_pmu1_cpuclk0(sc);
break;
+ case BHND_CHIPID_BCM4312:
case BHND_CHIPID_BCM4313:
/* 80MHz backplane clock */
clock = 80000 * 1000;