|
@@ -223,7 +223,7 @@ static bool __init processor_physically_present(acpi_handle handle)
|
|
|
return true;
|
|
|
}
|
|
|
|
|
|
-static void acpi_set_pdc_bits(u32 *buf)
|
|
|
+static void __cpuinit acpi_set_pdc_bits(u32 *buf)
|
|
|
{
|
|
|
buf[0] = ACPI_PDC_REVISION_ID;
|
|
|
buf[1] = 1;
|
|
@@ -235,7 +235,7 @@ static void acpi_set_pdc_bits(u32 *buf)
|
|
|
arch_acpi_set_pdc_bits(buf);
|
|
|
}
|
|
|
|
|
|
-static struct acpi_object_list *acpi_processor_alloc_pdc(void)
|
|
|
+static struct acpi_object_list *__cpuinit acpi_processor_alloc_pdc(void)
|
|
|
{
|
|
|
struct acpi_object_list *obj_list;
|
|
|
union acpi_object *obj;
|
|
@@ -278,7 +278,7 @@ static struct acpi_object_list *acpi_processor_alloc_pdc(void)
|
|
|
* _PDC is required for a BIOS-OS handshake for most of the newer
|
|
|
* ACPI processor features.
|
|
|
*/
|
|
|
-static int
|
|
|
+static int __cpuinit
|
|
|
acpi_processor_eval_pdc(acpi_handle handle, struct acpi_object_list *pdc_in)
|
|
|
{
|
|
|
acpi_status status = AE_OK;
|
|
@@ -306,7 +306,7 @@ acpi_processor_eval_pdc(acpi_handle handle, struct acpi_object_list *pdc_in)
|
|
|
return status;
|
|
|
}
|
|
|
|
|
|
-void acpi_processor_set_pdc(acpi_handle handle)
|
|
|
+void __cpuinit acpi_processor_set_pdc(acpi_handle handle)
|
|
|
{
|
|
|
struct acpi_object_list *obj_list;
|
|
|
|