mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-30 08:04:13 +08:00
ACPI / PM: acpi_hibernation_enter() need not switch interrupts off
The function acpi_hibernation_enter() is always called with interrupts off, so it doesn't need to switch them off and on. Signed-off-by: Rafael J. Wysocki <rjw@sisk.pl>
This commit is contained in:
parent
f1a2003e22
commit
aad83b1430
@ -457,16 +457,13 @@ static int acpi_hibernation_begin(void)
|
|||||||
static int acpi_hibernation_enter(void)
|
static int acpi_hibernation_enter(void)
|
||||||
{
|
{
|
||||||
acpi_status status = AE_OK;
|
acpi_status status = AE_OK;
|
||||||
unsigned long flags = 0;
|
|
||||||
|
|
||||||
ACPI_FLUSH_CPU_CACHE();
|
ACPI_FLUSH_CPU_CACHE();
|
||||||
|
|
||||||
local_irq_save(flags);
|
|
||||||
/* This shouldn't return. If it returns, we have a problem */
|
/* This shouldn't return. If it returns, we have a problem */
|
||||||
status = acpi_enter_sleep_state(ACPI_STATE_S4);
|
status = acpi_enter_sleep_state(ACPI_STATE_S4);
|
||||||
/* Reprogram control registers and execute _BFS */
|
/* Reprogram control registers and execute _BFS */
|
||||||
acpi_leave_sleep_state_prep(ACPI_STATE_S4);
|
acpi_leave_sleep_state_prep(ACPI_STATE_S4);
|
||||||
local_irq_restore(flags);
|
|
||||||
|
|
||||||
return ACPI_SUCCESS(status) ? 0 : -EFAULT;
|
return ACPI_SUCCESS(status) ? 0 : -EFAULT;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user