removed the 'smp' part from apic_smp_init_timer(), since it's used also without smp (I guess this was a leftover)
git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@33148 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
parent
24ca62447c
commit
44f6eb85bd
@ -101,7 +101,7 @@ setup_apic(kernel_args *args, int32 cpu)
|
|||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
apic_smp_init_timer(args, cpu);
|
apic_init_timer(args, cpu);
|
||||||
|
|
||||||
/* setup error vector to 0xfe */
|
/* setup error vector to 0xfe */
|
||||||
config = (apic_read(APIC_LVT_ERROR) & 0xffffff00) | 0xfe;
|
config = (apic_read(APIC_LVT_ERROR) & 0xffffff00) | 0xfe;
|
||||||
|
@ -7,6 +7,6 @@
|
|||||||
|
|
||||||
#include <SupportDefs.h>
|
#include <SupportDefs.h>
|
||||||
|
|
||||||
status_t apic_smp_init_timer(struct kernel_args *args, int32 cpu);
|
status_t apic_init_timer(struct kernel_args *args, int32 cpu);
|
||||||
|
|
||||||
#endif /* _KERNEL_ARCH_x86_TIMERS_APIC_H */
|
#endif /* _KERNEL_ARCH_x86_TIMERS_APIC_H */
|
||||||
|
@ -145,7 +145,7 @@ apic_init(struct kernel_args *args)
|
|||||||
|
|
||||||
|
|
||||||
status_t
|
status_t
|
||||||
apic_smp_init_timer(struct kernel_args *args, int32 cpu)
|
apic_init_timer(struct kernel_args *args, int32 cpu)
|
||||||
{
|
{
|
||||||
uint32 config;
|
uint32 config;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user