diff options
author | Felix Singer <felixsinger@posteo.net> | 2022-12-26 08:17:06 +0100 |
---|---|---|
committer | Felix Singer <felixsinger@posteo.net> | 2022-12-27 09:03:34 +0000 |
commit | ca4b587f95c0f1ed64e187511781abdfd4c7ebfb (patch) | |
tree | bc5c5a324c65b107fd6d992167168b0383a63503 /src/ec/lenovo/h8/acpi/ec.asl | |
parent | b4767ce169b202af2a9091275e30881172810fc6 (diff) |
{superio,ec}/acpi: Replace constant "One" with actual number
Change-Id: I5c77b6d1e1dc1134f62dcb3e93df01dc9c2f386c
Signed-off-by: Felix Singer <felixsinger@posteo.net>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/71520
Reviewed-by: Elyes Haouas <ehaouas@noos.fr>
Reviewed-by: Eric Lai <eric_lai@quanta.corp-partner.google.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/ec/lenovo/h8/acpi/ec.asl')
-rw-r--r-- | src/ec/lenovo/h8/acpi/ec.asl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/ec/lenovo/h8/acpi/ec.asl b/src/ec/lenovo/h8/acpi/ec.asl index 95841d3dd6..a1bf8bc5b7 100644 --- a/src/ec/lenovo/h8/acpi/ec.asl +++ b/src/ec/lenovo/h8/acpi/ec.asl @@ -69,7 +69,7 @@ Device(EC) if (^HKEY.INIT == 0) { ^HKEY.WBDC = BTEB ^HKEY.WWAN = WWEB - ^HKEY.INIT = One + ^HKEY.INIT = 1 } } } @@ -318,11 +318,11 @@ Device(EC) Method (FANE, 1, Serialized) { If (Arg0) { - FAND = One + FAND = 1 FANA = Zero } Else { FAND = Zero - FANA = One + FANA = 1 } } |