Felix Singer has submitted this change. ( https://review.coreboot.org/c/coreboot/+/60596 )
Change subject: superio/winbond/w83627hf/acpi: Replace LNot() with ASL 2.0 syntax ......................................................................
superio/winbond/w83627hf/acpi: Replace LNot() with ASL 2.0 syntax
Replace `LNot (a)` with `!a`.
Change-Id: I9f08cc180614e7d966256b2944745b0bc1d29865 Signed-off-by: Felix Singer felixsinger@posteo.net Reviewed-on: https://review.coreboot.org/c/coreboot/+/60596 Tested-by: build bot (Jenkins) no-reply@coreboot.org Reviewed-by: HAOUAS Elyes ehaouas@noos.fr --- M src/superio/winbond/w83627hf/acpi/superio.asl 1 file changed, 2 insertions(+), 2 deletions(-)
Approvals: build bot (Jenkins): Verified HAOUAS Elyes: Looks good to me, approved
diff --git a/src/superio/winbond/w83627hf/acpi/superio.asl b/src/superio/winbond/w83627hf/acpi/superio.asl index 326b717..cc4bb87 100644 --- a/src/superio/winbond/w83627hf/acpi/superio.asl +++ b/src/superio/winbond/w83627hf/acpi/superio.asl @@ -306,7 +306,7 @@ EXIT_CONFIG_MODE () ShiftLeft(Local1, 8, Local1) Or(Local1, Local2, Local1) - If (LNot(Local0)) { + If (!Local0) { Return (FDE) }
@@ -724,7 +724,7 @@ { Store (0x00, Local0) ENTER_CONFIG_MODE (3) - If (LNot(And(OPT2, 0x30))) + If (!And(OPT2, 0x30)) { If (ACTR) { Store (0x0F, Local0)
1 is the latest approved patch-set. No files were changed between the latest approved patch-set and the submitted one.