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

Commit 2ce65fe8 authored by Rafael J. Wysocki's avatar Rafael J. Wysocki
Browse files

ACPI / dock: Actually define acpi_dock_init() as void



Commit 94add0f8 (ACPI / dock: Initialize ACPI dock subsystem upfront)
changed the header of acpi_dock_init() in internal.h so that it is
supposed to be a void function now, but it forgot to update its
actual definition in dock.c according to which it still is supposed
to return int.

Although that didn't cause any visible breakage or even a compiler
warning to be thrown, which is odd enough, fix it.

Signed-off-by: default avatarRafael J. Wysocki <rafael.j.wysocki@intel.com>
Cc: 3.10+ <stable@vger.kernel.org>
parent 91bdad0b
Loading
Loading
Loading
Loading
+3 −4
Original line number Original line Diff line number Diff line
@@ -1064,10 +1064,10 @@ find_dock_and_bay(acpi_handle handle, u32 lvl, void *context, void **rv)
	return AE_OK;
	return AE_OK;
}
}


int __init acpi_dock_init(void)
void __init acpi_dock_init(void)
{
{
	if (acpi_disabled)
	if (acpi_disabled)
		return 0;
		return;


	/* look for dock stations and bays */
	/* look for dock stations and bays */
	acpi_walk_namespace(ACPI_TYPE_DEVICE, ACPI_ROOT_OBJECT,
	acpi_walk_namespace(ACPI_TYPE_DEVICE, ACPI_ROOT_OBJECT,
@@ -1075,11 +1075,10 @@ int __init acpi_dock_init(void)


	if (!dock_station_count) {
	if (!dock_station_count) {
		pr_info(PREFIX "No dock devices found.\n");
		pr_info(PREFIX "No dock devices found.\n");
		return 0;
		return;
	}
	}


	register_acpi_bus_notifier(&dock_acpi_notifier);
	register_acpi_bus_notifier(&dock_acpi_notifier);
	pr_info(PREFIX "%s: %d docks/bays found\n",
	pr_info(PREFIX "%s: %d docks/bays found\n",
		ACPI_DOCK_DRIVER_DESCRIPTION, dock_station_count);
		ACPI_DOCK_DRIVER_DESCRIPTION, dock_station_count);
	return 0;
}
}