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

Commit d423c083 authored by Jiang Liu's avatar Jiang Liu Committed by Rafael J. Wysocki
Browse files

ACPI / dock: mark initialization functions with __init



Mark all initialization functions with __init to reduce runtime
memory consumption.

Signed-off-by: default avatarJiang Liu <jiang.liu@huawei.com>
Signed-off-by: default avatarRafael J. Wysocki <rafael.j.wysocki@intel.com>
parent ed633e70
Loading
Loading
Loading
Loading
+6 −6
Original line number Original line Diff line number Diff line
@@ -100,7 +100,7 @@ struct dock_dependent_device {
 *
 *
 * Add the dependent device to the dock's dependent device list.
 * Add the dependent device to the dock's dependent device list.
 */
 */
static int
static int __init
add_dock_dependent_device(struct dock_station *ds, acpi_handle handle)
add_dock_dependent_device(struct dock_station *ds, acpi_handle handle)
{
{
	struct dock_dependent_device *dd;
	struct dock_dependent_device *dd;
@@ -244,7 +244,7 @@ static int is_dock(acpi_handle handle)
	return 1;
	return 1;
}
}


static int is_ejectable(acpi_handle handle)
static int __init is_ejectable(acpi_handle handle)
{
{
	acpi_status status;
	acpi_status status;
	acpi_handle tmp;
	acpi_handle tmp;
@@ -255,7 +255,7 @@ static int is_ejectable(acpi_handle handle)
	return 1;
	return 1;
}
}


static int is_ata(acpi_handle handle)
static int __init is_ata(acpi_handle handle)
{
{
	acpi_handle tmp;
	acpi_handle tmp;


@@ -268,7 +268,7 @@ static int is_ata(acpi_handle handle)
	return 0;
	return 0;
}
}


static int is_battery(acpi_handle handle)
static int __init is_battery(acpi_handle handle)
{
{
	struct acpi_device_info *info;
	struct acpi_device_info *info;
	int ret = 1;
	int ret = 1;
@@ -284,7 +284,7 @@ static int is_battery(acpi_handle handle)
	return ret;
	return ret;
}
}


static int is_ejectable_bay(acpi_handle handle)
static int __init is_ejectable_bay(acpi_handle handle)
{
{
	acpi_handle phandle;
	acpi_handle phandle;


@@ -848,7 +848,7 @@ static struct notifier_block dock_acpi_notifier = {
 * check to see if an object has an _EJD method.  If it does, then it
 * check to see if an object has an _EJD method.  If it does, then it
 * will see if it is dependent on the dock station.
 * will see if it is dependent on the dock station.
 */
 */
static acpi_status
static acpi_status __init
find_dock_devices(acpi_handle handle, u32 lvl, void *context, void **rv)
find_dock_devices(acpi_handle handle, u32 lvl, void *context, void **rv)
{
{
	acpi_status status;
	acpi_status status;