diff options
Diffstat (limited to 'src/soc/intel/icelake/acpi')
-rw-r--r-- | src/soc/intel/icelake/acpi/pch_hda.asl | 3 |
1 files changed, 1 insertions, 2 deletions
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 }) |