amd/amdfam10: Serialize mutable ASL methods
Fix three IASL warnings in ASL utility code by making the methods `GWBM`, `GWEM` and `GIOR` serialized. TEST: Built and booted on ASUS KFSN4-DRE. Change-Id: Ia98088bea7e3e21c33252c98a675799d52edb809 Signed-off-by: Timothy Pearson <tpearson@raptorengineeringinc.com> Reviewed-on: http://review.coreboot.org/8264 Reviewed-by: Alexandru Gagniuc <mr.nuke.me@gmail.com> Tested-by: build bot (Jenkins)
This commit is contained in:
parent
e538daeaec
commit
8d9492e536
|
@ -1,6 +1,7 @@
|
|||
//
|
||||
// This file is part of the coreboot project.
|
||||
//
|
||||
// Copyright (C) 2015 Timothy Pearson <tpearson@raptorengineeringinc.com>, Raptor Engineering
|
||||
// Copyright (C) 2007 Advanced Micro Devices, Inc.
|
||||
//
|
||||
// This program is free software; you can redistribute it and/or modify
|
||||
|
@ -122,7 +123,7 @@ Scope (\_SB)
|
|||
Return (0x00)
|
||||
}
|
||||
|
||||
Method (GWBN, 2, NotSerialized)
|
||||
Method (GWBN, 2, Serialized)
|
||||
{
|
||||
Name (BUF0, ResourceTemplate ()
|
||||
{
|
||||
|
@ -161,7 +162,7 @@ Scope (\_SB)
|
|||
Return (RTAG (BUF0))
|
||||
}
|
||||
|
||||
Method (GMEM, 2, NotSerialized)
|
||||
Method (GMEM, 2, Serialized)
|
||||
{
|
||||
Name (BUF0, ResourceTemplate ()
|
||||
{
|
||||
|
@ -222,7 +223,7 @@ Scope (\_SB)
|
|||
Return (Local3)
|
||||
}
|
||||
|
||||
Method (GIOR, 2, NotSerialized)
|
||||
Method (GIOR, 2, Serialized)
|
||||
{
|
||||
Name (BUF0, ResourceTemplate ()
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue