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
_______________________________________________
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