diff options
author | Felix Singer <felixsinger@posteo.net> | 2022-12-26 09:32:47 +0100 |
---|---|---|
committer | Felix Singer <felixsinger@posteo.net> | 2022-12-27 09:05:56 +0000 |
commit | fa06bcba06c5842faae797629e9f72ec28d511c0 (patch) | |
tree | 8fba8940a2bf47e403ee5009a623960cf344c975 /src/mainboard/intel/emeraldlake2 | |
parent | 7b8ac0030c611ad84d9ba84b3e90c36233a32c11 (diff) |
mainboard/acpi: Replace constant "Zero" with actual number
Change-Id: I4f2f02623b060ef0ebefc5aceb713c77a8b1e9a6
Signed-off-by: Felix Singer <felixsinger@posteo.net>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/71523
Reviewed-by: Elyes Haouas <ehaouas@noos.fr>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Eric Lai <eric_lai@quanta.corp-partner.google.com>
Diffstat (limited to 'src/mainboard/intel/emeraldlake2')
-rw-r--r-- | src/mainboard/intel/emeraldlake2/acpi/thermal.asl | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/mainboard/intel/emeraldlake2/acpi/thermal.asl b/src/mainboard/intel/emeraldlake2/acpi/thermal.asl index 3d5b25061d..af6c41e572 100644 --- a/src/mainboard/intel/emeraldlake2/acpi/thermal.asl +++ b/src/mainboard/intel/emeraldlake2/acpi/thermal.asl @@ -122,7 +122,7 @@ Scope (\_TZ) If (\FLVL <= 0) { Return (1) } Else { - Return (Zero) + Return (0) } } Method (_ON) { @@ -143,7 +143,7 @@ Scope (\_TZ) If (\FLVL <= 1) { Return (1) } Else { - Return (Zero) + Return (0) } } Method (_ON) { @@ -164,7 +164,7 @@ Scope (\_TZ) If (\FLVL <= 2) { Return (1) } Else { - Return (Zero) + Return (0) } } Method (_ON) { @@ -185,7 +185,7 @@ Scope (\_TZ) If (\FLVL <= 3) { Return (1) } Else { - Return (Zero) + Return (0) } } Method (_ON) { @@ -206,7 +206,7 @@ Scope (\_TZ) If (\FLVL <= 4) { Return (1) } Else { - Return (Zero) + Return (0) } } Method (_ON) { |