summaryrefslogtreecommitdiffstats
path: root/src/mainboard/lenovo/x201/acpi/platform.asl
diff options
context:
space:
mode:
authorMartin Roth <martinroth@google.com>2015-12-08 15:04:23 -0700
committerMartin Roth <martinroth@google.com>2015-12-10 16:31:35 +0100
commit91d9cbc2fbc62ede85e4eae07c52c43ffe7a4eb3 (patch)
treea65a35f49c6946ce70760cfad8464719b69c3a8d /src/mainboard/lenovo/x201/acpi/platform.asl
parent5a98bf2c0a9c1616e7fc807e0b5d8a2cbcf9062e (diff)
downloadcoreboot-91d9cbc2fbc62ede85e4eae07c52c43ffe7a4eb3.tar.gz
coreboot-91d9cbc2fbc62ede85e4eae07c52c43ffe7a4eb3.tar.bz2
coreboot-91d9cbc2fbc62ede85e4eae07c52c43ffe7a4eb3.zip
ACPI: Fix IASL Warning about unused method for _OSI 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 22: if(CondRefOf(\_OSI,Local1)) Warning 3144 - ^ Method Local is set but never used (Local1) Change-Id: I07f49ac5a3708838d1c4a7216dfb11acc415c881 Signed-off-by: Martin Roth <martinroth@google.com> Reviewed-on: https://review.coreboot.org/12692 Tested-by: build bot (Jenkins) Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
Diffstat (limited to 'src/mainboard/lenovo/x201/acpi/platform.asl')
-rw-r--r--src/mainboard/lenovo/x201/acpi/platform.asl2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mainboard/lenovo/x201/acpi/platform.asl b/src/mainboard/lenovo/x201/acpi/platform.asl
index 31e9e88b2bbe..3aa12e9f8890 100644
--- a/src/mainboard/lenovo/x201/acpi/platform.asl
+++ b/src/mainboard/lenovo/x201/acpi/platform.asl
@@ -99,7 +99,7 @@ Scope(\_SB)
/* Let's assume we're running at least Windows 2000 */
Store (2000, OSYS)
- If (CondRefOf(_OSI, Local0)) {
+ If (CondRefOf(_OSI)) {
If (_OSI("Windows 2001")) {
Store (2001, OSYS)
}