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

TAKAHASHI Yoshihiro nyan at FreeBSD.org
Wed Apr 21 00:42:49 UTC 2010


In article <201004202104.o3KL4vHv043955 at svn.freebsd.org>
Rui Paulo <rpaulo at 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 <nyan at FreeBSD.org>


More information about the svn-src-head mailing list