mb/intel/acpi: Replace LEqual(a,b) with ASL 2.0 syntax

Replace `LEqual (a, b)` with `a == b`.

Change-Id: I99f34d4c03b0687b8e0c2e4aee85f196679bcf52
Signed-off-by: Felix Singer <felixsinger@posteo.net>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/70585
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Eric Lai <eric_lai@quanta.corp-partner.google.com>
This commit is contained in:
Felix Singer 2022-12-11 20:52:09 +01:00
parent 43b5730962
commit b8762ae2dc
2 changed files with 7 additions and 7 deletions

View File

@ -35,13 +35,13 @@
Method(_DSM, 0x4, NotSerialized) Method(_DSM, 0x4, NotSerialized)
{ {
// DSM UUID for HIDI2C - HID driver does not load without DSM // DSM UUID for HIDI2C - HID driver does not load without DSM
If(LEqual(Arg0, ToUUID("3CDFF6F7-4267-4555-AD05-B30A3D8938DE"))) If(Arg0 == ToUUID("3CDFF6F7-4267-4555-AD05-B30A3D8938DE"))
{ {
// Function 0 : Query Function // Function 0 : Query Function
If(LEqual(Arg2, Zero)) If(Arg2 == Zero)
{ {
// Revision 1 // Revision 1
If(LEqual(Arg1, One)) If(Arg1 == One)
{ {
Return (Buffer (One) {0x03}) Return (Buffer (One) {0x03})
} }
@ -49,7 +49,7 @@
{ {
Return (Buffer (One) {0x00}) Return (Buffer (One) {0x00})
} }
} ElseIf (LEqual(Arg2, One)) { // Function 1 : HID Function } ElseIf (Arg2 == One) { // Function 1 : HID Function
// HID Descriptor Address (IHV Specific) // HID Descriptor Address (IHV Specific)
Return(0x0020) Return(0x0020)
} Else { } Else {

View File

@ -41,7 +41,7 @@ Scope (\_SB.PCI0.I2C1)
Method (_STA) Method (_STA)
{ {
If (LEqual (\S1EN, 1)) { If (\S1EN == 1) {
Return (0xF) Return (0xF)
} Else { } Else {
Return (0x0) Return (0x0)
@ -80,7 +80,7 @@ Scope (\_SB.PCI0.I2C1)
Method (_STA) Method (_STA)
{ {
If (LEqual (\S1EN, 1)) { If (\S1EN == 1) {
Return (0xF) Return (0xF)
} Else { } Else {
Return (0x0) Return (0x0)
@ -155,7 +155,7 @@ Scope (\_SB.PCI0.I2C6)
Method (_STA) Method (_STA)
{ {
If (LEqual (\S6EN, 1)) { If (\S6EN == 1) {
Return (0xF) Return (0xF)
} Else { } Else {
Return (0x0) Return (0x0)