svn commit: r193819 - head/sys/amd64/isa
Bjoern A. Zeeb
bz at FreeBSD.org
Tue Jun 9 09:47:03 UTC 2009
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;
More information about the svn-src-all
mailing list