diff options
Diffstat (limited to 'drivers/acpi/acpica/hwsleep.c')
-rw-r--r-- | drivers/acpi/acpica/hwsleep.c | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/drivers/acpi/acpica/hwsleep.c b/drivers/acpi/acpica/hwsleep.c index 8ab325cefa68..0ed85cac3231 100644 --- a/drivers/acpi/acpica/hwsleep.c +++ b/drivers/acpi/acpica/hwsleep.c | |||
@@ -43,8 +43,8 @@ | |||
43 | */ | 43 | */ |
44 | 44 | ||
45 | #include <acpi/acpi.h> | 45 | #include <acpi/acpi.h> |
46 | #include <linux/acpi.h> | ||
46 | #include "accommon.h" | 47 | #include "accommon.h" |
47 | #include <linux/tboot.h> | ||
48 | #include <linux/module.h> | 48 | #include <linux/module.h> |
49 | 49 | ||
50 | #define _COMPONENT ACPI_HARDWARE | 50 | #define _COMPONENT ACPI_HARDWARE |
@@ -172,8 +172,12 @@ acpi_status acpi_hw_legacy_sleep(u8 sleep_state, u8 flags) | |||
172 | 172 | ||
173 | ACPI_FLUSH_CPU_CACHE(); | 173 | ACPI_FLUSH_CPU_CACHE(); |
174 | 174 | ||
175 | tboot_sleep(sleep_state, pm1a_control, pm1b_control); | 175 | status = acpi_os_prepare_sleep(sleep_state, pm1a_control, |
176 | 176 | pm1b_control); | |
177 | if (ACPI_SKIP(status)) | ||
178 | return_ACPI_STATUS(AE_OK); | ||
179 | if (ACPI_FAILURE(status)) | ||
180 | return_ACPI_STATUS(status); | ||
177 | /* Write #2: Write both SLP_TYP + SLP_EN */ | 181 | /* Write #2: Write both SLP_TYP + SLP_EN */ |
178 | 182 | ||
179 | status = acpi_hw_write_pm1_control(pm1a_control, pm1b_control); | 183 | status = acpi_hw_write_pm1_control(pm1a_control, pm1b_control); |