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:
parent
43b5730962
commit
b8762ae2dc
|
@ -35,13 +35,13 @@
|
|||
Method(_DSM, 0x4, NotSerialized)
|
||||
{
|
||||
// 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
|
||||
If(LEqual(Arg2, Zero))
|
||||
If(Arg2 == Zero)
|
||||
{
|
||||
// Revision 1
|
||||
If(LEqual(Arg1, One))
|
||||
If(Arg1 == One)
|
||||
{
|
||||
Return (Buffer (One) {0x03})
|
||||
}
|
||||
|
@ -49,7 +49,7 @@
|
|||
{
|
||||
Return (Buffer (One) {0x00})
|
||||
}
|
||||
} ElseIf (LEqual(Arg2, One)) { // Function 1 : HID Function
|
||||
} ElseIf (Arg2 == One) { // Function 1 : HID Function
|
||||
// HID Descriptor Address (IHV Specific)
|
||||
Return(0x0020)
|
||||
} Else {
|
||||
|
|
|
@ -41,7 +41,7 @@ Scope (\_SB.PCI0.I2C1)
|
|||
|
||||
Method (_STA)
|
||||
{
|
||||
If (LEqual (\S1EN, 1)) {
|
||||
If (\S1EN == 1) {
|
||||
Return (0xF)
|
||||
} Else {
|
||||
Return (0x0)
|
||||
|
@ -80,7 +80,7 @@ Scope (\_SB.PCI0.I2C1)
|
|||
|
||||
Method (_STA)
|
||||
{
|
||||
If (LEqual (\S1EN, 1)) {
|
||||
If (\S1EN == 1) {
|
||||
Return (0xF)
|
||||
} Else {
|
||||
Return (0x0)
|
||||
|
@ -155,7 +155,7 @@ Scope (\_SB.PCI0.I2C6)
|
|||
|
||||
Method (_STA)
|
||||
{
|
||||
If (LEqual (\S6EN, 1)) {
|
||||
If (\S6EN == 1) {
|
||||
Return (0xF)
|
||||
} Else {
|
||||
Return (0x0)
|
||||
|
|
Loading…
Reference in New Issue