Commit 50ad147a authored by Rafael J. Wysocki's avatar Rafael J. Wysocki Committed by Len Brown

ACPI: Remove references to ACPI_STATE_S2 from acpi_pm_enter

Remove references to ACPI_STATE_S2, introduced by
acpi-implement-the-set_target-callback-from-pm_ops.patch, from acpi_pm_enter().
Signed-off-by: default avatarRafael J. Wysocki <rjw@sisk.pl>
Signed-off-by: default avatarLen Brown <len.brown@intel.com>
parent 10b3dcae
...@@ -81,8 +81,8 @@ static int acpi_pm_prepare(suspend_state_t pm_state) ...@@ -81,8 +81,8 @@ static int acpi_pm_prepare(suspend_state_t pm_state)
* acpi_pm_enter - Actually enter a sleep state. * acpi_pm_enter - Actually enter a sleep state.
* @pm_state: ignored * @pm_state: ignored
* *
* Flush caches and go to sleep. For STR or S2, we have to call * Flush caches and go to sleep. For STR we have to call arch-specific
* arch-specific assembly, which in turn call acpi_enter_sleep_state(). * assembly, which in turn call acpi_enter_sleep_state().
* It's unfortunate, but it works. Please fix if you're feeling frisky. * It's unfortunate, but it works. Please fix if you're feeling frisky.
*/ */
...@@ -95,7 +95,7 @@ static int acpi_pm_enter(suspend_state_t pm_state) ...@@ -95,7 +95,7 @@ static int acpi_pm_enter(suspend_state_t pm_state)
ACPI_FLUSH_CPU_CACHE(); ACPI_FLUSH_CPU_CACHE();
/* Do arch specific saving of state. */ /* Do arch specific saving of state. */
if (acpi_state == ACPI_STATE_S2 || acpi_state == ACPI_STATE_S3) { if (acpi_state == ACPI_STATE_S3) {
int error = acpi_save_state_mem(); int error = acpi_save_state_mem();
if (error) { if (error) {
...@@ -112,7 +112,6 @@ static int acpi_pm_enter(suspend_state_t pm_state) ...@@ -112,7 +112,6 @@ static int acpi_pm_enter(suspend_state_t pm_state)
status = acpi_enter_sleep_state(acpi_state); status = acpi_enter_sleep_state(acpi_state);
break; break;
case ACPI_STATE_S2:
case ACPI_STATE_S3: case ACPI_STATE_S3:
do_suspend_lowlevel(); do_suspend_lowlevel();
break; break;
...@@ -129,7 +128,7 @@ static int acpi_pm_enter(suspend_state_t pm_state) ...@@ -129,7 +128,7 @@ static int acpi_pm_enter(suspend_state_t pm_state)
printk(KERN_DEBUG "Back to C!\n"); printk(KERN_DEBUG "Back to C!\n");
/* restore processor state */ /* restore processor state */
if (acpi_state == ACPI_STATE_S2 || acpi_state == ACPI_STATE_S3) if (acpi_state == ACPI_STATE_S3)
acpi_restore_state_mem(); acpi_restore_state_mem();
return ACPI_SUCCESS(status) ? 0 : -EFAULT; return ACPI_SUCCESS(status) ? 0 : -EFAULT;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment