diff options
author | Martin Roth <martinroth@google.com> | 2015-11-24 16:46:44 -0700 |
---|---|---|
committer | Martin Roth <martinroth@google.com> | 2015-12-06 18:43:36 +0100 |
commit | ad4764dddd838cfc5713f407b642e2357eb6e888 (patch) | |
tree | 2641df549e7a5d81401a2aa4ecf63409b6c6396e /src | |
parent | d49bbff8ffc00d5a83d774f123939f5fc444ba08 (diff) |
hp/pavilion_m6_1035dx: Fix IASL warning - Missing _HID object
- Add System board _HID object.
- Remove Kconfig default disabling IASL warnings as errors
Fixes warning:
dsdt.aml 64: Device (MB) {
Warning 3141 - ^ Missing dependency
(Device object requires a _HID or _ADR in same scope)
Change-Id: I4fa6ab2a6744d58ded8b0feb361e002d90e11474
Signed-off-by: Martin Roth <martinroth@google.com>
Reviewed-on: https://review.coreboot.org/12532
Tested-by: build bot (Jenkins)
Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
Diffstat (limited to 'src')
-rw-r--r-- | src/mainboard/hp/pavilion_m6_1035dx/Kconfig | 4 | ||||
-rw-r--r-- | src/mainboard/hp/pavilion_m6_1035dx/acpi/mainboard.asl | 2 |
2 files changed, 2 insertions, 4 deletions
diff --git a/src/mainboard/hp/pavilion_m6_1035dx/Kconfig b/src/mainboard/hp/pavilion_m6_1035dx/Kconfig index 24ec6321d0..f78cfba26a 100644 --- a/src/mainboard/hp/pavilion_m6_1035dx/Kconfig +++ b/src/mainboard/hp/pavilion_m6_1035dx/Kconfig @@ -65,8 +65,4 @@ config VGA_BIOS_ID string default "1002,9900" -# TODO: Remove this when platform ASL is fixed -config IASL_WARNINGS_ARE_ERRORS - def_bool n - endif # BOARD_HP_PAVILION_M6_1035DX diff --git a/src/mainboard/hp/pavilion_m6_1035dx/acpi/mainboard.asl b/src/mainboard/hp/pavilion_m6_1035dx/acpi/mainboard.asl index 9ef24c7a63..a2a8d5ee0b 100644 --- a/src/mainboard/hp/pavilion_m6_1035dx/acpi/mainboard.asl +++ b/src/mainboard/hp/pavilion_m6_1035dx/acpi/mainboard.asl @@ -101,6 +101,8 @@ Scope (\_SB) { } Device (MB) { + Name(_HID, EisaId("PNP0C01")) // System Board + /* Lid open */ Method (LIDO) { /* Stub */ } /* Lid closed */ |