diff options
author | Oskar Enoksson <enok@lysator.liu.se> | 2014-02-11 23:19:02 +0100 |
---|---|---|
committer | Idwer Vollering <vidwer@gmail.com> | 2014-02-13 01:04:02 +0100 |
commit | 42283e7994b6519c4d1786b840d439fb90be4fb0 (patch) | |
tree | 1722c2fc354d14c9fe587c06ced4b0c963fc85f5 /src/superio/winbond | |
parent | 76e25b66ae1975212b7863eb91437f92443bfef6 (diff) | |
download | coreboot-42283e7994b6519c4d1786b840d439fb90be4fb0.tar.xz |
Eliminate some ASL warnings
The ASL compiler warned about "Control Method should be made Serialized
(due to creation of named objects within)". This commit eliminates the
warnings by changing those NonSerialized into Serialized.
Change-Id: I639e769cf7a9428c34268e0c555a30c7dee1e04c
Signed-off-by: Oskar Enoksson <enok@lysator.liu.se>
Reviewed-on: http://review.coreboot.org/5189
Tested-by: build bot (Jenkins)
Reviewed-by: Ronald G. Minnich <rminnich@gmail.com>
Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
Diffstat (limited to 'src/superio/winbond')
-rw-r--r-- | src/superio/winbond/w83627hf/acpi/superio.asl | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/superio/winbond/w83627hf/acpi/superio.asl b/src/superio/winbond/w83627hf/acpi/superio.asl index 943a37d783..41f3588772 100644 --- a/src/superio/winbond/w83627hf/acpi/superio.asl +++ b/src/superio/winbond/w83627hf/acpi/superio.asl @@ -655,7 +655,7 @@ Device(SIO) { EXCM () } - Method (_CRS) + Method (_CRS, 0, Serialized) { Name (CRS, ResourceTemplate () { IO (Decode16, 0x0000, 0x0000, 0x01, 0x08, IO0) @@ -1099,7 +1099,7 @@ Device(SIO) { Notify(PS2M, 1) } - Method (_CRS) + Method (_CRS, 0, Serialized) { Name (CRS, ResourceTemplate () { IRQNoFlags (IRQX) {} @@ -1203,7 +1203,7 @@ Device(SIO) { EXCM () } - Method (_CRS) + Method (_CRS, 0, Serialized) { Name (CRS, ResourceTemplate () { IRQNoFlags (IRQX) {} @@ -1425,7 +1425,7 @@ Device(SIO) { EXCM () } - Method (_CRS) + Method (_CRS, 0, Serialized) { Name (CRS, ResourceTemplate () { IO (Decode16, 0x0000, 0x0000, 0x08, 0x02, IO0) |