summaryrefslogtreecommitdiffstats
path: root/src/mainboard/portwell/m107/acpi/superio.asl
diff options
context:
space:
mode:
Diffstat (limited to 'src/mainboard/portwell/m107/acpi/superio.asl')
-rw-r--r--src/mainboard/portwell/m107/acpi/superio.asl41
1 files changed, 20 insertions, 21 deletions
diff --git a/src/mainboard/portwell/m107/acpi/superio.asl b/src/mainboard/portwell/m107/acpi/superio.asl
index 309a26bb131b..aecd174fc8fe 100644
--- a/src/mainboard/portwell/m107/acpi/superio.asl
+++ b/src/mainboard/portwell/m107/acpi/superio.asl
@@ -15,30 +15,29 @@
* GNU General Public License for more details.
*/
+Device (COM1) {
+ Name (_HID, EISAID ("PNP0501"))
+ Name (_UID, 1)
- Device (COM1) {
- Name (_HID, EISAID ("PNP0501"))
- Name (_UID, 1)
+ Method (_STA, 0, NotSerialized)
+ {
+ Return (0x0F)
+ }
- Method (_STA, 0, NotSerialized)
- {
- Return (0x0F)
- }
+ Name (_CRS, ResourceTemplate ()
+ {
+ FixedIO (0x03F8, 0x08)
+ FixedIO (0x6E, 0x02)
+ IRQNoFlags () {4}
+ })
- Name (_CRS, ResourceTemplate ()
- {
+ Name (_PRS, ResourceTemplate ()
+ {
+ StartDependentFn (0, 0) {
FixedIO (0x03F8, 0x08)
FixedIO (0x6E, 0x02)
IRQNoFlags () {4}
- })
-
- Name (_PRS, ResourceTemplate ()
- {
- StartDependentFn (0, 0) {
- FixedIO (0x03F8, 0x08)
- FixedIO (0x6E, 0x02)
- IRQNoFlags () {4}
- }
- EndDependentFn ()
- })
- }
+ }
+ EndDependentFn ()
+ })
+}