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) {
_______________________________________________
svn-src-head@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"

Reply via email to