mirror of
https://github.com/opnsense/src.git
synced 2026-04-29 18:32:49 -04:00
Unbreak the build for amd64 after r193814 using correct variable names.
This commit is contained in:
parent
93a885572c
commit
78c7c6adbc
1 changed files with 2 additions and 2 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Reference in a new issue