1 #ifndef _ACPI_MD_CPU_H_
2 #define _ACPI_MD_CPU_H_
3 
4 /*
5  * CPU ID -> ACPI ID mapping macros
6  */
7 #define CPUID_TO_ACPIID(cpu_id)		(cpu_id_to_acpi_id[(cpu_id)])
8 
9 extern u_int			cpu_id_to_acpi_id[];
10 
11 #endif	/* !_ACPI_MD_CPU_H_ */
12