[coreboot-gerrit] Patch set updated for coreboot: 7f76793 amd/amdfam10: Serialize mutable ASL methods

Timothy Pearson (tpearson@raptorengineeringinc.com) gerrit at coreboot.org
Tue Jan 27 07:14:47 CET 2015


Timothy Pearson (tpearson at raptorengineeringinc.com) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/8264

-gerrit

commit 7f76793507881a9d24e47804afa8e641ce51f7d2
Author: Timothy Pearson <tpearson at raptorengineeringinc.com>
Date:   Fri Jan 23 20:25:15 2015 -0600

    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 at raptorengineeringinc.com>
---
 src/northbridge/amd/amdfam10/amdfam10_util.asl | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/src/northbridge/amd/amdfam10/amdfam10_util.asl b/src/northbridge/amd/amdfam10/amdfam10_util.asl
index 8e02510..a0f4170 100644
--- a/src/northbridge/amd/amdfam10/amdfam10_util.asl
+++ b/src/northbridge/amd/amdfam10/amdfam10_util.asl
@@ -1,6 +1,7 @@
 //
 // This file is part of the coreboot project.
 //
+// Copyright (C) 2015 Timothy Pearson <tpearson at 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 ()
 		{



More information about the coreboot-gerrit mailing list