ACPI / Sleep: Drop acpi_suspend_finish()
The function acpi_suspend_finish() is not necessary any more, because acpi_pm_finish() can be used instead of it just fine. Remove it. Signed-off-by: Rafael J. Wysocki <rjw@sisk.pl> Signed-off-by: Len Brown <len.brown@intel.com>
This commit is contained in:
Родитель
c5f7a1bb65
Коммит
618d7fd0d4
|
@ -290,11 +290,6 @@ static int acpi_suspend_enter(suspend_state_t pm_state)
|
|||
return ACPI_SUCCESS(status) ? 0 : -EFAULT;
|
||||
}
|
||||
|
||||
static void acpi_suspend_finish(void)
|
||||
{
|
||||
acpi_pm_finish();
|
||||
}
|
||||
|
||||
static int acpi_suspend_state_valid(suspend_state_t pm_state)
|
||||
{
|
||||
u32 acpi_state;
|
||||
|
@ -316,7 +311,7 @@ static struct platform_suspend_ops acpi_suspend_ops = {
|
|||
.begin = acpi_suspend_begin,
|
||||
.prepare_late = acpi_pm_prepare,
|
||||
.enter = acpi_suspend_enter,
|
||||
.wake = acpi_suspend_finish,
|
||||
.wake = acpi_pm_finish,
|
||||
.end = acpi_pm_end,
|
||||
};
|
||||
|
||||
|
@ -344,7 +339,7 @@ static struct platform_suspend_ops acpi_suspend_ops_old = {
|
|||
.begin = acpi_suspend_begin_old,
|
||||
.prepare_late = acpi_pm_pre_suspend,
|
||||
.enter = acpi_suspend_enter,
|
||||
.wake = acpi_suspend_finish,
|
||||
.wake = acpi_pm_finish,
|
||||
.end = acpi_pm_end,
|
||||
.recover = acpi_pm_finish,
|
||||
};
|
||||
|
|
Загрузка…
Ссылка в новой задаче