1
0
mirror of https://git.FreeBSD.org/src.git synced 2025-01-26 16:18:31 +00:00

Comply with the new cyclic dtrace module variable name

(cyclic_clock_func).
This commit is contained in:
Rui Paulo 2010-04-21 11:28:13 +00:00
parent 94c6c6ba67
commit 45ea4bc76f
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=206993

View File

@ -175,8 +175,8 @@ clkintr(struct trapframe *frame)
* timers.
*/
int cpu = PCPU_GET(cpuid);
if (lapic_cyclic_clock_func[cpu] != NULL)
(*lapic_cyclic_clock_func[cpu])(frame);
if (cyclic_clock_func[cpu] != NULL)
(*cyclic_clock_func[cpu])(frame);
#endif
#ifdef SMP