diff options
author | Felix Singer <felixsinger@posteo.net> | 2022-12-16 07:11:17 +0100 |
---|---|---|
committer | Felix Singer <felixsinger@posteo.net> | 2022-12-23 10:18:48 +0000 |
commit | 35e65a8bc36628baad7d2ed94bef7619971e6d88 (patch) | |
tree | a3b4d2afe3494eee4049db95f04a69d61113f006 /src/mainboard/google/cyan | |
parent | 86bc2e708dc2600c5611b6573d43645e7d57e561 (diff) |
tree: Replace And(a,b,c) with ASL 2.0 syntax
Replace `And (a, b, c)` with `c = a & b`, respectively `c &= b` where
possible.
Change-Id: Ie558f9d0b597c56ca3b31498edb68de8877d3a2f
Signed-off-by: Felix Singer <felixsinger@posteo.net>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/70850
Reviewed-by: Eric Lai <eric_lai@quanta.corp-partner.google.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/mainboard/google/cyan')
-rw-r--r-- | src/mainboard/google/cyan/variants/terra/include/variant/acpi/mainboard.asl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mainboard/google/cyan/variants/terra/include/variant/acpi/mainboard.asl b/src/mainboard/google/cyan/variants/terra/include/variant/acpi/mainboard.asl index 1f46c69aeb..7ab1b84706 100644 --- a/src/mainboard/google/cyan/variants/terra/include/variant/acpi/mainboard.asl +++ b/src/mainboard/google/cyan/variants/terra/include/variant/acpi/mainboard.asl @@ -10,7 +10,7 @@ Scope (\_SB) { Method (GPID, 0, Serialized) // GPID: Get Project ID for Terra2/Terra3 { - And(\BDID >> 3, 0x01, Local0) + Local0 = (\BDID >> 3) & 1 Return (Local0) } } |