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>
This commit is contained in:
parent
8eed67b3ab
commit
427feecbf0
|
@ -72,7 +72,7 @@ Device (RTEK) /* Audio Codec driver I2CS*/
|
|||
Name (_CID, "AMDI1002")
|
||||
}
|
||||
|
||||
Method (_CRS, 0x0, NotSerialized)
|
||||
Method (_CRS, 0x0, Serialized)
|
||||
{
|
||||
Name (SBUF, ResourceTemplate ()
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue