aboutsummaryrefslogtreecommitdiff
path: root/src/mainboard/intel
diff options
context:
space:
mode:
authorFelix Singer <felixsinger@posteo.net>2022-12-11 20:52:09 +0100
committerFelix Singer <felixsinger@posteo.net>2022-12-12 21:45:10 +0000
commitb8762ae2dc559dda2e76a14d27ff4d68d8d6002d (patch)
treed61d45efc90e85857d04bd75d269fbec18f32f17 /src/mainboard/intel
parent43b5730962d7898db040eb7004aa6fb655188e03 (diff)
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>
Diffstat (limited to 'src/mainboard/intel')
-rw-r--r--src/mainboard/intel/glkrvp/touchpad.asl8
-rw-r--r--src/mainboard/intel/strago/acpi/mainboard.asl6
2 files changed, 7 insertions, 7 deletions
diff --git a/src/mainboard/intel/glkrvp/touchpad.asl b/src/mainboard/intel/glkrvp/touchpad.asl
index 57388c5110..14ed629334 100644
--- a/src/mainboard/intel/glkrvp/touchpad.asl
+++ b/src/mainboard/intel/glkrvp/touchpad.asl
@@ -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 {
diff --git a/src/mainboard/intel/strago/acpi/mainboard.asl b/src/mainboard/intel/strago/acpi/mainboard.asl
index 0a7fb5c97c..dcfb0407e6 100644
--- a/src/mainboard/intel/strago/acpi/mainboard.asl
+++ b/src/mainboard/intel/strago/acpi/mainboard.asl
@@ -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)