x86: add hard_smp_prossor_id with MACRO in io_apic_xx.c
Signed-off-by: Yinghai Lu <yhlu.kernel@gmail.com> Signed-off-by: Ingo Molnar <mingo@elte.hu>
This commit is contained in:
parent
49899eacce
commit
3491998dd5
|
@ -1600,6 +1600,13 @@ void __cpuinit generic_processor_info(int apicid, int version)
|
||||||
cpu_set(cpu, cpu_present_map);
|
cpu_set(cpu, cpu_present_map);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#ifdef CONFIG_X86_64
|
||||||
|
int hard_smp_processor_id(void)
|
||||||
|
{
|
||||||
|
return read_apic_id();
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Power management
|
* Power management
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -1612,10 +1612,12 @@ void __cpuinit generic_processor_info(int apicid, int version)
|
||||||
cpu_set(cpu, cpu_present_map);
|
cpu_set(cpu, cpu_present_map);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#ifdef CONFIG_X86_64
|
||||||
int hard_smp_processor_id(void)
|
int hard_smp_processor_id(void)
|
||||||
{
|
{
|
||||||
return read_apic_id();
|
return read_apic_id();
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Power management
|
* Power management
|
||||||
|
|
Loading…
Reference in New Issue