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;
_______________________________________________
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"

Reply via email to