In article <201004202104.o3kl4vhv043...@svn.freebsd.org>
Rui Paulo <rpa...@freebsd.org> writes:

> 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) {

The same change is needed for sys/pc98/cbus/clock.c.

---
TAKAHASHI Yoshihiro <n...@freebsd.org>
_______________________________________________
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"

Reply via email to