diff options
author | Sudeep Holla <[email protected]> | 2022-06-28 13:53:45 +0100 |
---|---|---|
committer | Ard Biesheuvel <[email protected]> | 2022-06-30 17:36:03 +0200 |
commit | 36d1f098e674f90b010d6eaa60e3f22f7a6aaf96 (patch) | |
tree | dc8da7d85e426ca211535baf58c0e2466655dba6 | |
parent | 353efd5e97a7973d78f2634274b57309d0966e29 (diff) |
ACPI: Enable Platform Runtime Mechanism(PRM) support on ARM64
There is interest to make use of PRM(Platform Runtime Mechanism) even on
ARM64 ACPI platforms. Allow PRM to be enabled on ARM64 platforms. It will
be enabled by default as on x86_64.
Signed-off-by: Sudeep Holla <[email protected]>
Acked-by: Rafael J. Wysocki <[email protected]>
Signed-off-by: Ard Biesheuvel <[email protected]>
-rw-r--r-- | drivers/acpi/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/acpi/Kconfig b/drivers/acpi/Kconfig index 1e34f846508f..d08b7408f0a5 100644 --- a/drivers/acpi/Kconfig +++ b/drivers/acpi/Kconfig @@ -592,7 +592,7 @@ config X86_PM_TIMER config ACPI_PRMT bool "Platform Runtime Mechanism Support" - depends on EFI && X86_64 + depends on EFI && (X86_64 || ARM64) default y help Platform Runtime Mechanism (PRM) is a firmware interface exposing a |