diff options
author | Felix Singer <felixsinger@posteo.net> | 2022-01-02 01:19:30 +0100 |
---|---|---|
committer | Felix Singer <felixsinger@posteo.net> | 2022-07-29 10:15:39 +0000 |
commit | a41716fadc60c6260cecd38ad9d187bc1a69da0b (patch) | |
tree | c10728b0cd820b58381b98e5fcce27e662e8f7be /src | |
parent | 561f7df3bd8e07786e12f873362d729c60c97ea5 (diff) |
sb/intel/i82801jx/acpi: Replace LEqual(a,b) with ASL 2.0 syntax
Replace `LEqual(a, b)` with `a == b`.
Change-Id: I3aebd29bba285229979b79867c881018f61e2060
Signed-off-by: Felix Singer <felixsinger@posteo.net>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/60666
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Sean Rhodes <sean@starlabs.systems>
Reviewed-by: Sridhar Siricilla <sridhar.siricilla@intel.com>
Diffstat (limited to 'src')
-rw-r--r-- | src/southbridge/intel/i82801jx/acpi/ich10.asl | 2 | ||||
-rw-r--r-- | src/southbridge/intel/i82801jx/acpi/lpc.asl | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/src/southbridge/intel/i82801jx/acpi/ich10.asl b/src/southbridge/intel/i82801jx/acpi/ich10.asl index 0e4c03b07a..2324696d90 100644 --- a/src/southbridge/intel/i82801jx/acpi/ich10.asl +++ b/src/southbridge/intel/i82801jx/acpi/ich10.asl @@ -175,7 +175,7 @@ Scope(\) Method (_OSC, 4) { /* Check for proper GUID */ - If (LEqual (Arg0, ToUUID("33DB4D5B-1FF7-401C-9657-7441C03DD766"))) + If (Arg0 == ToUUID("33DB4D5B-1FF7-401C-9657-7441C03DD766")) { /* Let OS control everything */ Return (Arg3) diff --git a/src/southbridge/intel/i82801jx/acpi/lpc.asl b/src/southbridge/intel/i82801jx/acpi/lpc.asl index 9227735446..d2e88902f9 100644 --- a/src/southbridge/intel/i82801jx/acpi/lpc.asl +++ b/src/southbridge/intel/i82801jx/acpi/lpc.asl @@ -74,15 +74,15 @@ Device (LPCB) { If (HPTE) { CreateDWordField(BUF0, \_SB.PCI0.LPCB.HPET.FED0._BAS, HPT0) - If (Lequal(HPAS, 1)) { + If (HPAS == 1) { HPT0 = HPET_BASE_ADDRESS + 0x1000 } - If (Lequal(HPAS, 2)) { + If (HPAS == 2) { HPT0 = HPET_BASE_ADDRESS + 0x2000 } - If (Lequal(HPAS, 3)) { + If (HPAS == 3) { HPT0 = HPET_BASE_ADDRESS + 0x3000 } } |