From 45ea4bc76f7d57924f15b2c2104d057054baf659 Mon Sep 17 00:00:00 2001 From: Rui Paulo Date: Wed, 21 Apr 2010 11:28:13 +0000 Subject: [PATCH] Comply with the new cyclic dtrace module variable name (cyclic_clock_func). --- sys/pc98/cbus/clock.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sys/pc98/cbus/clock.c b/sys/pc98/cbus/clock.c index 3028c074d153..8c5a7d2af759 100644 --- a/sys/pc98/cbus/clock.c +++ b/sys/pc98/cbus/clock.c @@ -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