diff options
author | Martin Roth <gaumless@gmail.com> | 2015-06-25 20:13:12 -0600 |
---|---|---|
committer | Martin Roth <gaumless@gmail.com> | 2015-06-27 02:48:11 +0200 |
commit | 9a4cbc9d15a8cf76705b7922489c85687f1a1a16 (patch) | |
tree | 84facce46f55ec41a6a332e662df9d46b9145592 /src/mainboard/google | |
parent | 0458370bf7f579966d42c6eb7fa067715b44b393 (diff) | |
download | coreboot-9a4cbc9d15a8cf76705b7922489c85687f1a1a16.tar.xz |
google/parrot: Add System Board ID to fix ACPI warning
Add the System Board Hardware ID to fix the warning:
dsdt.aml 88: Device (MB) {
Warning 3141 - ^ Missing dependency
(Device object requires a _HID or _ADR in same scope)
Change-Id: I063580142ae8053fdc05e165c01e86b8b7cd5ca6
Signed-off-by: Martin Roth <gaumless@gmail.com>
Reviewed-on: http://review.coreboot.org/10668
Tested-by: build bot (Jenkins)
Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
Diffstat (limited to 'src/mainboard/google')
-rw-r--r-- | src/mainboard/google/parrot/acpi/mainboard.asl | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/mainboard/google/parrot/acpi/mainboard.asl b/src/mainboard/google/parrot/acpi/mainboard.asl index c39df7cb9c..77fdd3600e 100644 --- a/src/mainboard/google/parrot/acpi/mainboard.asl +++ b/src/mainboard/google/parrot/acpi/mainboard.asl @@ -83,6 +83,8 @@ Scope (\_SB) { } Device (MB) { + Name(_HID, EisaId("PNP0C01")) // System Board + /* Lid open */ Method (LIDO) { /* Not needed on this board */ } /* Lid closed */ |