From 427feecbf0003d968ac804edaac7cb25ac67b397 Mon Sep 17 00:00:00 2001 From: Paul Menzel Date: Thu, 5 Oct 2017 23:53:43 +0200 Subject: google/kahlee/acpi: Serialize method _CRS ASL+ Optimizing Compiler/Disassembler version 20170831 shows the remark below. ``` dsdt.aml 87: Method (_CRS, 0x0, NotSerialized) Remark 2120 - ^ Control Method should be made Serialized \ (due to creation of named objects within) ``` So, serialize the method. Fixes: commit 4a51ea8470 (google/kahlee: Add ASL for Elan touchpad) Change-Id: I664f493318cbfd80d91565c0d29ec918278c4906 Signed-off-by: Paul Menzel Reviewed-on: https://review.coreboot.org/21901 Tested-by: build bot (Jenkins) Reviewed-by: Patrick Rudolph Reviewed-by: Marc Jones Reviewed-by: Martin Roth --- src/mainboard/google/kahlee/acpi/mainboard.asl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/mainboard/google/kahlee/acpi/mainboard.asl b/src/mainboard/google/kahlee/acpi/mainboard.asl index 5c938962f3..30b7adeffc 100644 --- a/src/mainboard/google/kahlee/acpi/mainboard.asl +++ b/src/mainboard/google/kahlee/acpi/mainboard.asl @@ -72,7 +72,7 @@ Device (RTEK) /* Audio Codec driver I2CS*/ Name (_CID, "AMDI1002") } - Method (_CRS, 0x0, NotSerialized) + Method (_CRS, 0x0, Serialized) { Name (SBUF, ResourceTemplate () { -- cgit v1.2.3