Felix Singer has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/60488 )
Change subject: mb/google/slippy/acpi: Replace Add(a,b,c) with ASL 2.0 syntax ......................................................................
mb/google/slippy/acpi: Replace Add(a,b,c) with ASL 2.0 syntax
Replace `Add (a, b, c)` with `c = a + b`.
Change-Id: I1f18a327b5500eacfe8895ebabb1f2b294cef0d0 Signed-off-by: Felix Singer felixsinger@posteo.net --- M src/mainboard/google/slippy/acpi/thermal.asl 1 file changed, 2 insertions(+), 2 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/88/60488/1
diff --git a/src/mainboard/google/slippy/acpi/thermal.asl b/src/mainboard/google/slippy/acpi/thermal.asl index 1e122a3..751197e 100644 --- a/src/mainboard/google/slippy/acpi/thermal.asl +++ b/src/mainboard/google/slippy/acpi/thermal.asl @@ -38,7 +38,7 @@ Multiply (Arg0, 10, Local0)
// Convert to Kelvin - Add (Local0, 2732, Local0) + Local0 = Local0 + 2732
Return (Local0) } @@ -87,7 +87,7 @@ }
// Adjust by offset to get Kelvin - Add (_SB.PCI0.LPCB.EC0.TOFS, Local0, Local0) + Local0 = Local0 + _SB.PCI0.LPCB.EC0.TOFS
// Convert to 1/10 Kelvin Multiply (Local0, 10, Local0)