diff options
author | Elyes HAOUAS <ehaouas@noos.fr> | 2019-10-23 15:35:28 +0200 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2019-10-24 15:52:16 +0000 |
commit | fe3a19d3f38b1e87f814b78f45353339b196d6ee (patch) | |
tree | 620e39f0508db409561e4b424fb62ca64308fa7e | |
parent | d624e3997a356af2fc5e74b6f646576de25b81ff (diff) | |
download | coreboot-fe3a19d3f38b1e87f814b78f45353339b196d6ee.tar.xz |
src/ec/quanta: Drop wrong _ADR objects
ACPI Version 6.3 Section 6.1: "A device object must contain either an _HID
object or an _ADR object, but should not contain both."
Found-by: ACPICA 20191018
Change-Id: Iaa35790a38c36091a228007d739b970cb66a3e1c
Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/36264
Reviewed-by: Duncan Laurie <dlaurie@chromium.org>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
-rw-r--r-- | src/ec/quanta/ene_kb3940q/acpi/superio.asl | 1 | ||||
-rw-r--r-- | src/ec/quanta/it8518/acpi/superio.asl | 1 |
2 files changed, 0 insertions, 2 deletions
diff --git a/src/ec/quanta/ene_kb3940q/acpi/superio.asl b/src/ec/quanta/ene_kb3940q/acpi/superio.asl index 2f5298a056..88dccc907a 100644 --- a/src/ec/quanta/ene_kb3940q/acpi/superio.asl +++ b/src/ec/quanta/ene_kb3940q/acpi/superio.asl @@ -24,7 +24,6 @@ Device (SIO) { Device (PS2K) // Keyboard { Name (_UID, 0) - Name (_ADR, 0) Name (_HID, EISAID("PNP0303")) Name (_CID, EISAID("PNP030B")) diff --git a/src/ec/quanta/it8518/acpi/superio.asl b/src/ec/quanta/it8518/acpi/superio.asl index e912e049fc..4109cb5d55 100644 --- a/src/ec/quanta/it8518/acpi/superio.asl +++ b/src/ec/quanta/it8518/acpi/superio.asl @@ -25,7 +25,6 @@ Device (SIO) Device (PS2K) // Keyboard { Name (_UID, 0) - Name (_ADR, 0) Name (_HID, EISAID("PNP0303")) Name (_CID, EISAID("PNP030B")) |