diff options
author | Paul Menzel <paulepanter@users.sourceforge.net> | 2017-10-05 23:53:43 +0200 |
---|---|---|
committer | Martin Roth <martinroth@google.com> | 2017-11-03 15:23:52 +0000 |
commit | 427feecbf0003d968ac804edaac7cb25ac67b397 (patch) | |
tree | ed969b7eed2a84c0ad77f4508a7e92e30bc72ece /src/mainboard/google/kahlee | |
parent | 8eed67b3ab1a30dc71a5c279b2c10234a2b41a77 (diff) |
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 <paulepanter@users.sourceforge.net>
Reviewed-on: https://review.coreboot.org/21901
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Patrick Rudolph <siro@das-labor.org>
Reviewed-by: Marc Jones <marc@marcjonesconsulting.com>
Reviewed-by: Martin Roth <martinroth@google.com>
Diffstat (limited to 'src/mainboard/google/kahlee')
-rw-r--r-- | src/mainboard/google/kahlee/acpi/mainboard.asl | 2 |
1 files changed, 1 insertions, 1 deletions
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 () { |