Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 4 Jan 2018 19:47:01 +0000 (UTC)
From:      "Landon J. Fuller" <landonf@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r327558 - head/sys/dev/bhnd/cores/pmu
Message-ID:  <201801041947.w04Jl1e5040680@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: landonf
Date: Thu Jan  4 19:47:01 2018
New Revision: 327558
URL: https://svnweb.freebsd.org/changeset/base/327558

Log:
  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

Modified:
  head/sys/dev/bhnd/cores/pmu/bhnd_pmu_subr.c

Modified: head/sys/dev/bhnd/cores/pmu/bhnd_pmu_subr.c
==============================================================================
--- head/sys/dev/bhnd/cores/pmu/bhnd_pmu_subr.c	Thu Jan  4 19:43:42 2018	(r327557)
+++ head/sys/dev/bhnd/cores/pmu/bhnd_pmu_subr.c	Thu Jan  4 19:47:01 2018	(r327558)
@@ -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;



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