From 8f75d79e749fc1fd0edf180fd68df30f0f30f811 Mon Sep 17 00:00:00 2001 From: Felix Singer Date: Sun, 11 Dec 2022 23:55:57 +0100 Subject: soc/intel/acpi: Replace LNotEqual(a,b) with ASL 2.0 syntax Replace `LNotEqual (a, b)` with `a != b`. Change-Id: Ia1bd22a62ec2868324a88400e27ed52c9f169751 Signed-off-by: Felix Singer Reviewed-on: https://review.coreboot.org/c/coreboot/+/70619 Reviewed-by: Eric Lai Tested-by: build bot (Jenkins) --- src/soc/intel/icelake/acpi/pch_hda.asl | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'src/soc/intel/icelake/acpi') diff --git a/src/soc/intel/icelake/acpi/pch_hda.asl b/src/soc/intel/icelake/acpi/pch_hda.asl index d0f966a0dc..b5b5416f1c 100644 --- a/src/soc/intel/icelake/acpi/pch_hda.asl +++ b/src/soc/intel/icelake/acpi/pch_hda.asl @@ -37,8 +37,7 @@ Device (HDAS) * if NHLT address and length are set in NVS. */ If (LAnd (Arg1 == One, - LAnd (LNotEqual (NHLA, Zero), - LNotEqual (NHLL, Zero)))) { + LAnd (NHLA != Zero, NHLL != Zero))) { Return (Buffer (One) { 0x03 }) } Else { Return (Buffer (One) { 0x01 }) -- cgit v1.2.3