diff options
| author | Hanjun Guo <[email protected]> | 2020-05-07 09:09:21 +0000 |
|---|---|---|
| committer | Rafael J. Wysocki <[email protected]> | 2020-05-09 09:29:17 +0000 |
| commit | 95722237cb2ae4f7b73471058cdb19e8f4057c93 (patch) | |
| tree | 9c6f65db35fe16981fc49e2bb5f0b07ba382aad5 /drivers/acpi/sleep.c | |
| parent | ACPI: scan: Put SPCR and STAO table after using it (diff) | |
| download | kernel-95722237cb2ae4f7b73471058cdb19e8f4057c93.tar.gz kernel-95722237cb2ae4f7b73471058cdb19e8f4057c93.zip | |
ACPI: sleep: Put the FACS table after using it
Put the FACS table after using it to release the table
mapping.
Signed-off-by: Hanjun Guo <[email protected]>
Signed-off-by: Rafael J. Wysocki <[email protected]>
Diffstat (limited to 'drivers/acpi/sleep.c')
| -rw-r--r-- | drivers/acpi/sleep.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/drivers/acpi/sleep.c b/drivers/acpi/sleep.c index 4edc8a3ce40f..30e2df9b4e0d 100644 --- a/drivers/acpi/sleep.c +++ b/drivers/acpi/sleep.c @@ -1297,8 +1297,10 @@ static void acpi_sleep_hibernate_setup(void) return; acpi_get_table(ACPI_SIG_FACS, 1, (struct acpi_table_header **)&facs); - if (facs) + if (facs) { s4_hardware_signature = facs->hardware_signature; + acpi_put_table((struct acpi_table_header *)facs); + } } #else /* !CONFIG_HIBERNATION */ static inline void acpi_sleep_hibernate_setup(void) {} |
