tree: Replace And(a,b) with ASL 2.0 syntax
Replace `And (a, b)` with `a & b`. Change-Id: Id8bbd1a477e6286bbcb5fa31afd1c7a860b1c7dc Signed-off-by: Felix Singer <felixsinger@posteo.net> Reviewed-on: https://review.coreboot.org/c/coreboot/+/70851 Reviewed-by: Eric Lai <eric_lai@quanta.corp-partner.google.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
This commit is contained in:
@@ -44,7 +44,7 @@ Method (BSTA, 1, Serialized)
|
||||
Return (Zero)
|
||||
}
|
||||
|
||||
If (And(Not(BTSW (Arg0)), BTEX)) {
|
||||
If (Not(BTSW (Arg0)) & BTEX) {
|
||||
Local0 = 0x1F
|
||||
} Else {
|
||||
Local0 = 0x0F
|
||||
|
Reference in New Issue
Block a user