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>
This commit is contained in:
parent
76e25b66ae
commit
42283e7994
|
@ -109,7 +109,7 @@ Scope (\_SB)
|
|||
}
|
||||
|
||||
/* GetBusResources(Node, Link) */
|
||||
Method (GWBN, 2, NotSerialized)
|
||||
Method (GWBN, 2, Serialized)
|
||||
{
|
||||
Name (BUF0, ResourceTemplate ()
|
||||
{
|
||||
|
@ -149,7 +149,7 @@ Scope (\_SB)
|
|||
}
|
||||
|
||||
/* GetMemoryResources(Node, Link) */
|
||||
Method (GMEM, 2, NotSerialized)
|
||||
Method (GMEM, 2, Serialized)
|
||||
{
|
||||
Name (BUF0, ResourceTemplate ()
|
||||
{
|
||||
|
@ -214,7 +214,7 @@ Scope (\_SB)
|
|||
}
|
||||
|
||||
/* GetIOResources(Node, Link) */
|
||||
Method (GIOR, 2, NotSerialized)
|
||||
Method (GIOR, 2, Serialized)
|
||||
{
|
||||
Name (BUF0, ResourceTemplate ()
|
||||
{
|
||||
|
|
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue