Date: Wed, 21 Apr 2010 12:35:31 +0100 From: Rui Paulo <rpaulo@FreeBSD.org> To: TAKAHASHI Yoshihiro <nyan@FreeBSD.org> Cc: svn-src-head@FreeBSD.org, svn-src-all@FreeBSD.org, src-committers@FreeBSD.org Subject: Re: svn commit: r206922 - head/sys/x86/isa Message-ID: <46ADE413-773C-47C3-8EDE-12B6FEDC0BD8@FreeBSD.org> In-Reply-To: <20100421.094242.94902748.nyan@FreeBSD.org> References: <201004202104.o3KL4vHv043955@svn.freebsd.org> <20100421.094242.94902748.nyan@FreeBSD.org>
next in thread | previous in thread | raw e-mail | index | archive | help
On 21 Apr 2010, at 01:42, TAKAHASHI Yoshihiro wrote: > In article <201004202104.o3KL4vHv043955@svn.freebsd.org> > Rui Paulo <rpaulo@FreeBSD.org> writes: >=20 >> Log: >> Fix another instance of lapic_cyclic_clock_func. >>=20 >> Modified: >> head/sys/x86/isa/clock.c >>=20 >> Modified: head/sys/x86/isa/clock.c >> = =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D >> --- 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 =3D PCPU_GET(cpuid); >> - if (lapic_cyclic_clock_func[cpu] !=3D NULL) >> - (*lapic_cyclic_clock_func[cpu])(frame); >> + if (cyclic_clock_func[cpu] !=3D NULL) >> + (*cyclic_clock_func[cpu])(frame); >> #endif >>=20 >> if (using_atrtc_timer) { >=20 > The same change is needed for sys/pc98/cbus/clock.c. Thanks, fixed. Regards, -- Rui Paulo
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?46ADE413-773C-47C3-8EDE-12B6FEDC0BD8>