svn commit: r206922 - head/sys/x86/isa

Rui Paulo rpaulo at FreeBSD.org
Tue Apr 20 21:04:57 UTC 2010


Author: rpaulo
Date: Tue Apr 20 21:04:57 2010
New Revision: 206922
URL: http://svn.freebsd.org/changeset/base/206922

Log:
  Fix another instance of lapic_cyclic_clock_func.

Modified:
  head/sys/x86/isa/clock.c

Modified: head/sys/x86/isa/clock.c
==============================================================================
--- head/sys/x86/isa/clock.c	Tue Apr 20 21:03:42 2010	(r206921)
+++ head/sys/x86/isa/clock.c	Tue Apr 20 21:04:57 2010	(r206922)
@@ -186,8 +186,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
 
 	if (using_atrtc_timer) {


More information about the svn-src-head mailing list