svn commit: r206922 - head/sys/x86/isa
Rui Paulo
rpaulo at FreeBSD.org
Wed Apr 21 11:35:35 UTC 2010
On 21 Apr 2010, at 01:42, TAKAHASHI Yoshihiro wrote:
> 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.
Thanks, fixed.
Regards,
--
Rui Paulo
More information about the svn-src-head
mailing list