Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 9 Jun 2009 09:47:02 +0000 (UTC)
From:      "Bjoern A. Zeeb" <bz@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r193819 - head/sys/amd64/isa
Message-ID:  <200906090947.n599l22x063458@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: bz
Date: Tue Jun  9 09:47:02 2009
New Revision: 193819
URL: http://svn.freebsd.org/changeset/base/193819

Log:
  Unbreak the build for amd64 after r193814 using correct variable names.

Modified:
  head/sys/amd64/isa/clock.c

Modified: head/sys/amd64/isa/clock.c
==============================================================================
--- head/sys/amd64/isa/clock.c	Tue Jun  9 09:03:13 2009	(r193818)
+++ head/sys/amd64/isa/clock.c	Tue Jun  9 09:47:02 2009	(r193819)
@@ -535,7 +535,7 @@ void
 cpu_startprofclock(void)
 {
 
-	if (using_lapic_timer || !using_atrtc_clock)
+	if (using_lapic_timer || !using_atrtc_timer)
 		return;
 	atrtc_rate(RTCSA_PROF);
 	psdiv = pscnt = psratio;
@@ -545,7 +545,7 @@ void
 cpu_stopprofclock(void)
 {
 
-	if (using_lapic_timer || !using_atrtc_clock)
+	if (using_lapic_timer || !using_atrtc_timer)
 		return;
 	atrtc_rate(RTCSA_NOPROF);
 	psdiv = pscnt = 1;



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