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

This commit is contained in:
Bjoern A. Zeeb 2009-06-09 09:47:02 +00:00
parent 93a885572c
commit 78c7c6adbc
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=193819

View File

@ -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;