summaryrefslogtreecommitdiffstats
path: root/src/ec
diff options
context:
space:
mode:
authorFelix Singer <felixsinger@posteo.net>2021-12-30 02:56:00 +0100
committerFelix Singer <felixsinger@posteo.net>2021-12-31 09:04:13 +0000
commit91596bcead1ee8918d7ae2083725825fa2e1ceb5 (patch)
treecfb3cb1a5445834fc08da902c74fb44e64b534dd /src/ec
parente2c105ea69737dddad15119e702bf153601c868e (diff)
downloadcoreboot-91596bcead1ee8918d7ae2083725825fa2e1ceb5.tar.gz
coreboot-91596bcead1ee8918d7ae2083725825fa2e1ceb5.tar.bz2
coreboot-91596bcead1ee8918d7ae2083725825fa2e1ceb5.zip
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>
Diffstat (limited to 'src/ec')
-rw-r--r--src/ec/quanta/it8518/acpi/ec.asl2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ec/quanta/it8518/acpi/ec.asl b/src/ec/quanta/it8518/acpi/ec.asl
index 36f966f94d56..ea6f73091300 100644
--- a/src/ec/quanta/it8518/acpi/ec.asl
+++ b/src/ec/quanta/it8518/acpi/ec.asl
@@ -10,7 +10,7 @@ Device (EC0)
{
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)