Felix Singer has submitted this change. ( https://review.coreboot.org/c/coreboot/+/60511 )
Change subject: ec/quanta/it8518/acpi: Replace Add(a,b) with ASL 2.0 syntax ......................................................................
ec/quanta/it8518/acpi: Replace Add(a,b) with ASL 2.0 syntax
Replace `Add (a, b)` with `a + b`.
Change-Id: Ib00f671d448aa1987542dd1ec81410df65695708 Signed-off-by: Felix Singer felixsinger@posteo.net Reviewed-on: https://review.coreboot.org/c/coreboot/+/60511 Tested-by: build bot (Jenkins) no-reply@coreboot.org Reviewed-by: HAOUAS Elyes ehaouas@noos.fr --- M src/ec/quanta/it8518/acpi/ec.asl 1 file changed, 1 insertion(+), 1 deletion(-)
Approvals: build bot (Jenkins): Verified HAOUAS Elyes: Looks good to me, approved
diff --git a/src/ec/quanta/it8518/acpi/ec.asl b/src/ec/quanta/it8518/acpi/ec.asl index 36f966f..ea6f730 100644 --- a/src/ec/quanta/it8518/acpi/ec.asl +++ b/src/ec/quanta/it8518/acpi/ec.asl @@ -10,7 +10,7 @@ { Name (_HID, EISAID ("PNP0C09")) Name (_UID, 1) - Name (_GPE, Add(EC_SCI_GPI, 16)) // GPE for Runtime SCI + Name (_GPE, EC_SCI_GPI + 16) // GPE for Runtime SCI
// EC RAM fields OperationRegion(ERAM, EmbeddedControl, 0, 0xFF)
2 is the latest approved patch-set. No files were changed between the latest approved patch-set and the submitted one.