diff options
author | Frans Hendriks <fhendriks@eltan.com> | 2022-03-31 08:36:05 +0200 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2022-04-04 19:08:59 +0000 |
commit | 9cd9f38c4bdb8342551b507ec539db71300255bc (patch) | |
tree | 6b8fb53cd26be3efbca75537d243de015e402071 /src | |
parent | 3605dac10b88baa22c7a74145a72474aa45a38c4 (diff) |
src/mb/facebook/monolith/acpi/superio.asl: Remove _PRS
IASL reports warning on missing _SRS.
Devices have fixed configuration which is always enabled.
Remove _PRS for this fixed configuration.
BUG=N/A
TEST=built facebook monolith and verify no IASL warning is reported.
Change-Id: I554d3497255c1e50cdbe74b1cffc9f2c59fbae77
Signed-off-by: Frans Hendriks <fhendriks@eltan.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/63244
Reviewed-by: Erik van den Bogaert <ebogaert@eltan.com>
Reviewed-by: Elyes Haouas <ehaouas@noos.fr>
Reviewed-by: Angel Pons <th3fanbus@gmail.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src')
-rw-r--r-- | src/mainboard/facebook/monolith/acpi/superio.asl | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/src/mainboard/facebook/monolith/acpi/superio.asl b/src/mainboard/facebook/monolith/acpi/superio.asl index 4ffd557028..ce5595f368 100644 --- a/src/mainboard/facebook/monolith/acpi/superio.asl +++ b/src/mainboard/facebook/monolith/acpi/superio.asl @@ -17,16 +17,6 @@ Device (COM1) { FixedIO (0x6E, 0x02) IRQNoFlags () {4} }) - - Name (_PRS, ResourceTemplate () - { - StartDependentFn (0, 0) { - FixedIO (0x03F8, 0x08) - FixedIO (0x6E, 0x02) - IRQNoFlags () {4} - } - EndDependentFn () - }) } Device (COM2) { @@ -43,13 +33,4 @@ Device (COM2) { FixedIO (0x03E8, 0x08) IRQNoFlags () {3} }) - - Name (_PRS, ResourceTemplate () - { - StartDependentFn (0, 0) { - FixedIO (0x03E8, 0x08) - IRQNoFlags () {3} - } - EndDependentFn () - }) } |