Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 6430c9c1 authored by Jan Beulich's avatar Jan Beulich Committed by Len Brown
Browse files

ACPI: use __init where possible in processor driver



Use __init for several functions, remove an unnecessary export and a
stray use of __ref.

Signed-off-by: default avatarJan Beulich <jbeulich@novell.com>
Signed-off-by: default avatarLen Brown <len.brown@intel.com>
parent dd9c1549
Loading
Loading
Loading
Loading
+4 −5
Original line number Diff line number Diff line
@@ -19,7 +19,7 @@
#define _COMPONENT		ACPI_PROCESSOR_COMPONENT
ACPI_MODULE_NAME("processor_core");

static int set_no_mwait(const struct dmi_system_id *id)
static int __init set_no_mwait(const struct dmi_system_id *id)
{
	printk(KERN_NOTICE PREFIX "%s detected - "
		"disabling mwait for CPU C-states\n", id->ident);
@@ -27,7 +27,7 @@ static int set_no_mwait(const struct dmi_system_id *id)
	return 0;
}

static struct dmi_system_id __cpuinitdata processor_idle_dmi_table[] = {
static struct dmi_system_id __initdata processor_idle_dmi_table[] = {
	{
	set_no_mwait, "Extensa 5220", {
	DMI_MATCH(DMI_BIOS_VENDOR, "Phoenix Technologies LTD"),
@@ -183,7 +183,7 @@ int acpi_get_cpuid(acpi_handle handle, int type, u32 acpi_id)
EXPORT_SYMBOL_GPL(acpi_get_cpuid);
#endif

static bool processor_physically_present(acpi_handle handle)
static bool __init processor_physically_present(acpi_handle handle)
{
	int cpuid, type;
	u32 acpi_id;
@@ -323,9 +323,8 @@ void acpi_processor_set_pdc(acpi_handle handle)
	kfree(obj_list->pointer);
	kfree(obj_list);
}
EXPORT_SYMBOL_GPL(acpi_processor_set_pdc);

static acpi_status
static acpi_status __init
early_init_pdc(acpi_handle handle, u32 lvl, void *context, void **rv)
{
	if (processor_physically_present(handle) == false)
+2 −2
Original line number Diff line number Diff line
@@ -635,7 +635,7 @@ int acpi_processor_device_add(acpi_handle handle, struct acpi_device **device)
	return 0;
}

static void __ref acpi_processor_hotplug_notify(acpi_handle handle,
static void acpi_processor_hotplug_notify(acpi_handle handle,
					  u32 event, void *data)
{
	struct acpi_processor *pr;