svn commit: r206993 - head/sys/pc98/cbus
Rui Paulo
rpaulo at FreeBSD.org
Wed Apr 21 11:28:13 UTC 2010
Author: rpaulo
Date: Wed Apr 21 11:28:13 2010
New Revision: 206993
URL: http://svn.freebsd.org/changeset/base/206993
Log:
Comply with the new cyclic dtrace module variable name
(cyclic_clock_func).
Modified:
head/sys/pc98/cbus/clock.c
Modified: head/sys/pc98/cbus/clock.c
==============================================================================
--- head/sys/pc98/cbus/clock.c Wed Apr 21 11:17:16 2010 (r206992)
+++ head/sys/pc98/cbus/clock.c Wed Apr 21 11:28:13 2010 (r206993)
@@ -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
More information about the svn-src-head
mailing list