From 3e41ee9847f0acd4a57c0c4cb11156eace16fd05 Mon Sep 17 00:00:00 2001 From: Martin Roth Date: Tue, 8 Dec 2015 15:24:41 -0700 Subject: ACPI: Fix IASL Warning about unused method for _S3 check According to the ACPI Spec for CondRefOf, the result argument is optional. In all of these locations, it was getting set but not used, creating a warning in new versions of IASL. Since it's an optional argument, just remove it. dsdt.aml 640: If (CondRefOf (\_S3, Local0)) Warning 3144 - Method Local is set but never used ^ (Local0) Change-Id: I758d198c33e585a6a4ad2c1c70f2370a01af5138 Signed-off-by: Martin Roth Reviewed-on: https://review.coreboot.org/12693 Tested-by: build bot (Jenkins) Reviewed-by: Stefan Reinauer --- src/mainboard/amd/serengeti_cheetah_fam10/acpi/htx_no_ioapic.asl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/mainboard/amd/serengeti_cheetah_fam10/acpi/htx_no_ioapic.asl') diff --git a/src/mainboard/amd/serengeti_cheetah_fam10/acpi/htx_no_ioapic.asl b/src/mainboard/amd/serengeti_cheetah_fam10/acpi/htx_no_ioapic.asl index aae917173d..9caa3b2466 100644 --- a/src/mainboard/amd/serengeti_cheetah_fam10/acpi/htx_no_ioapic.asl +++ b/src/mainboard/amd/serengeti_cheetah_fam10/acpi/htx_no_ioapic.asl @@ -23,7 +23,7 @@ Method (_PRW, 0, NotSerialized) { - If (CondRefOf (\_S3, Local0)) { Return (Package (0x02) { 0x29, 0x03 }) } + If (CondRefOf (\_S3)) { Return (Package (0x02) { 0x29, 0x03 }) } Else { Return (Package (0x02) { 0x29, 0x01 }) } } -- cgit v1.2.3