From 6decc1dce45d94d3d0ad44b4768385730ed42150 Mon Sep 17 00:00:00 2001 From: Angel Pons Date: Sun, 10 Apr 2022 11:17:53 +0200 Subject: [PATCH] mb/protectli/vault_bsw: Drop `_PRS` from static devices The `_PRS` ACPI object is not needed for static (non-configurable) devices. For devices where `_CRS` always provides the same set of resource settings, drop the `_PRS` object. Note that every dropped `_PRS` object only provides one set of resource settings, which is identical to the resource settings provided by the `_CRS` object. Also, drop `IGNORE_IASL_MISSING_DEPENDENCY` as it's no longer needed. Change-Id: Ic37608ac9622b37cae6d81045740a033e9aa9d4f Signed-off-by: Angel Pons Reviewed-on: https://review.coreboot.org/c/coreboot/+/63526 Tested-by: build bot (Jenkins) Reviewed-by: Felix Held --- src/mainboard/protectli/vault_bsw/Kconfig | 3 --- src/mainboard/protectli/vault_bsw/acpi/superio.asl | 9 --------- 2 files changed, 12 deletions(-) diff --git a/src/mainboard/protectli/vault_bsw/Kconfig b/src/mainboard/protectli/vault_bsw/Kconfig index 5877f8486c..e169392d6a 100644 --- a/src/mainboard/protectli/vault_bsw/Kconfig +++ b/src/mainboard/protectli/vault_bsw/Kconfig @@ -1,8 +1,5 @@ if BOARD_PROTECTLI_FW2B || BOARD_PROTECTLI_FW4B -config IGNORE_IASL_MISSING_DEPENDENCY - def_bool y - config BOARD_SPECIFIC_OPTIONS def_bool y select BOARD_ROMSIZE_KB_8192 diff --git a/src/mainboard/protectli/vault_bsw/acpi/superio.asl b/src/mainboard/protectli/vault_bsw/acpi/superio.asl index e51eb00603..40303e10f8 100644 --- a/src/mainboard/protectli/vault_bsw/acpi/superio.asl +++ b/src/mainboard/protectli/vault_bsw/acpi/superio.asl @@ -14,13 +14,4 @@ Device (COM1) { FixedIO (0x03F8, 0x08) IRQNoFlags () {4} }) - - Name (_PRS, ResourceTemplate () - { - StartDependentFn (0, 0) { - FixedIO (0x03F8, 0x08) - IRQNoFlags () {4} - } - EndDependentFn () - }) }