diff options
author | Nico Huber <nico.huber@secunet.com> | 2021-06-24 12:58:52 +0000 |
---|---|---|
committer | Nico Huber <nico.h@gmx.de> | 2021-07-28 13:46:05 +0000 |
commit | 8e0d1936a2b7d9cccaa4d46952061eec8b16e1b2 (patch) | |
tree | 2ee25412f218e81bbfef701927eec757919cde70 /src/ec | |
parent | df060bc362c060a72b9493a68d7dff8f48a7b6c6 (diff) |
ec/roda/it8518/acpi: Don't hard-code GPE offset
The GPE offset of 16 is PCH specific.
Built roda/rw11 with `BUILD_TIMELESS=1` and coreboot.rom remains the
same.
Change-Id: I4ec38fc28d2436f84a090bb4ab38f20612cfd795
Signed-off-by: Nico Huber <nico.huber@secunet.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/56080
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Angel Pons <th3fanbus@gmail.com>
Diffstat (limited to 'src/ec')
-rw-r--r-- | src/ec/roda/it8518/acpi/ec.asl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ec/roda/it8518/acpi/ec.asl b/src/ec/roda/it8518/acpi/ec.asl index de121c6226..28f9c88eb6 100644 --- a/src/ec/roda/it8518/acpi/ec.asl +++ b/src/ec/roda/it8518/acpi/ec.asl @@ -6,7 +6,7 @@ Device (EC0) { Name (_HID, EISAID ("PNP0C09")) // ACPI Embedded Controller Name (_UID, 1) - Name (_GPE, Add(EC_SCI_GPI, 16)) // GPE for Runtime SCI + Name (_GPE, EC_SCI_GPI) Name (PWRS, 1) Name (LIDS, 1) |