diff options
Diffstat (limited to 'drivers/acpi/hardware/hwsleep.c')
-rw-r--r-- | drivers/acpi/hardware/hwsleep.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/drivers/acpi/hardware/hwsleep.c b/drivers/acpi/hardware/hwsleep.c index 415d342aeab..cedee0c43b5 100644 --- a/drivers/acpi/hardware/hwsleep.c +++ b/drivers/acpi/hardware/hwsleep.c | |||
@@ -274,13 +274,13 @@ acpi_enter_sleep_state ( | |||
274 | * 1) Disable/Clear all GPEs | 274 | * 1) Disable/Clear all GPEs |
275 | * 2) Enable all wakeup GPEs | 275 | * 2) Enable all wakeup GPEs |
276 | */ | 276 | */ |
277 | status = acpi_hw_disable_all_gpes (ACPI_ISR); | 277 | status = acpi_hw_disable_all_gpes (); |
278 | if (ACPI_FAILURE (status)) { | 278 | if (ACPI_FAILURE (status)) { |
279 | return_ACPI_STATUS (status); | 279 | return_ACPI_STATUS (status); |
280 | } | 280 | } |
281 | acpi_gbl_system_awake_and_running = FALSE; | 281 | acpi_gbl_system_awake_and_running = FALSE; |
282 | 282 | ||
283 | status = acpi_hw_enable_all_wakeup_gpes (ACPI_ISR); | 283 | status = acpi_hw_enable_all_wakeup_gpes (); |
284 | if (ACPI_FAILURE (status)) { | 284 | if (ACPI_FAILURE (status)) { |
285 | return_ACPI_STATUS (status); | 285 | return_ACPI_STATUS (status); |
286 | } | 286 | } |
@@ -424,13 +424,13 @@ acpi_enter_sleep_state_s4bios ( | |||
424 | * 1) Disable/Clear all GPEs | 424 | * 1) Disable/Clear all GPEs |
425 | * 2) Enable all wakeup GPEs | 425 | * 2) Enable all wakeup GPEs |
426 | */ | 426 | */ |
427 | status = acpi_hw_disable_all_gpes (ACPI_ISR); | 427 | status = acpi_hw_disable_all_gpes (); |
428 | if (ACPI_FAILURE (status)) { | 428 | if (ACPI_FAILURE (status)) { |
429 | return_ACPI_STATUS (status); | 429 | return_ACPI_STATUS (status); |
430 | } | 430 | } |
431 | acpi_gbl_system_awake_and_running = FALSE; | 431 | acpi_gbl_system_awake_and_running = FALSE; |
432 | 432 | ||
433 | status = acpi_hw_enable_all_wakeup_gpes (ACPI_ISR); | 433 | status = acpi_hw_enable_all_wakeup_gpes (); |
434 | if (ACPI_FAILURE (status)) { | 434 | if (ACPI_FAILURE (status)) { |
435 | return_ACPI_STATUS (status); | 435 | return_ACPI_STATUS (status); |
436 | } | 436 | } |
@@ -557,13 +557,13 @@ acpi_leave_sleep_state ( | |||
557 | * 1) Disable/Clear all GPEs | 557 | * 1) Disable/Clear all GPEs |
558 | * 2) Enable all runtime GPEs | 558 | * 2) Enable all runtime GPEs |
559 | */ | 559 | */ |
560 | status = acpi_hw_disable_all_gpes (ACPI_NOT_ISR); | 560 | status = acpi_hw_disable_all_gpes (); |
561 | if (ACPI_FAILURE (status)) { | 561 | if (ACPI_FAILURE (status)) { |
562 | return_ACPI_STATUS (status); | 562 | return_ACPI_STATUS (status); |
563 | } | 563 | } |
564 | acpi_gbl_system_awake_and_running = TRUE; | 564 | acpi_gbl_system_awake_and_running = TRUE; |
565 | 565 | ||
566 | status = acpi_hw_enable_all_runtime_gpes (ACPI_NOT_ISR); | 566 | status = acpi_hw_enable_all_runtime_gpes (); |
567 | if (ACPI_FAILURE (status)) { | 567 | if (ACPI_FAILURE (status)) { |
568 | return_ACPI_STATUS (status); | 568 | return_ACPI_STATUS (status); |
569 | } | 569 | } |