[coreboot] Patch set updated for coreboot: ecfe37e AMD boards, ASRock E350M1: Remove whitespace in front of comma in DSDT

Paul Menzel (paulepanter@users.sourceforge.net) gerrit at coreboot.org
Thu Jan 24 13:12:00 CET 2013


Paul Menzel (paulepanter at users.sourceforge.net) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/2187

-gerrit

commit ecfe37e273d33d58df9e699c63e5df82a03e512d
Author: Paul Menzel <paulepanter at users.sourceforge.net>
Date:   Sun Jan 20 11:30:14 2013 +0100

    AMD boards, ASRock E350M1: Remove whitespace in front of comma in DSDT
    
        commit 585a4006976e903599b7128200a29b5729777818
        Author: zbao <fishbaozi at gmail.com>
        Date:   Thu Apr 12 11:27:26 2012 +0800
    
            Leverage the Pstate table created by AGESA.
    
    … introduced unneeded whitespace in front of a comma.
    
    Revert that part of the above commit. In the file for AMD Dinar
    tabs and spaces are mixed, but leave that alone for the beginning.
    
    Change-Id: I279cd0cb0be8c79258034733773f2ae1c2207cce
    Signed-off-by: Paul Menzel <paulepanter at users.sourceforge.net>
---
 src/mainboard/amd/dinar/dsdt.asl         | 16 ++++++++--------
 src/mainboard/amd/inagua/dsdt.asl        |  6 +++---
 src/mainboard/amd/persimmon/dsdt.asl     |  6 +++---
 src/mainboard/amd/south_station/dsdt.asl |  6 +++---
 src/mainboard/amd/torpedo/dsdt.asl       |  6 +++---
 src/mainboard/amd/union_station/dsdt.asl |  6 +++---
 src/mainboard/asrock/e350m1/dsdt.asl     |  6 +++---
 7 files changed, 26 insertions(+), 26 deletions(-)

diff --git a/src/mainboard/amd/dinar/dsdt.asl b/src/mainboard/amd/dinar/dsdt.asl
index 501ec78..7df090f 100644
--- a/src/mainboard/amd/dinar/dsdt.asl
+++ b/src/mainboard/amd/dinar/dsdt.asl
@@ -60,49 +60,49 @@ DefinitionBlock (
                 Processor(
                         C001,           /* name space name */
                         1,              /* Unique number for this processor */
-                        0x810,         /* PBLK system I/O address !hardcoded! */
-                        0x0            /* PBLKLEN for boot processor */
+                        0x810,          /* PBLK system I/O address !hardcoded! */
+                        0x0             /* PBLKLEN for boot processor */
                         ) {
                 }
                 Processor(
                         C002,           /* name space name */
                         2,              /* Unique number for this processor */
-                        0x810,         /* PBLK system I/O address !hardcoded! */
+                        0x810,          /* PBLK system I/O address !hardcoded! */
                         0x00            /* PBLKLEN for boot processor */
                         ) {
                 }
                 Processor(
                         C003,           /* name space name */
                         3,              /* Unique number for this processor */
-                        0x810,         /* PBLK system I/O address !hardcoded! */
+                        0x810,          /* PBLK system I/O address !hardcoded! */
                         0x00            /* PBLKLEN for boot processor */
                         ) {
                 }
 		Processor(
 			C004,		/* name space name */
 			4,		/* Unique number for this processor */
-			0x810		,		/* PBLK system I/O address !hardcoded! */
+			0x810,		/* PBLK system I/O address !hardcoded! */
 			0x00		/* PBLKLEN for boot processor */
 			) {
 		}
 		Processor(
 			C005,		/* name space name */
 			5,		/* Unique number for this processor */
-			0x810		,		/* PBLK system I/O address !hardcoded! */
+			0x810,		/* PBLK system I/O address !hardcoded! */
 			0x00		/* PBLKLEN for boot processor */
 			) {
 		}
 		Processor(
 			C006,		/* name space name */
 			6,		/* Unique number for this processor */
-			0x810		,		/* PBLK system I/O address !hardcoded! */
+			0x810,		/* PBLK system I/O address !hardcoded! */
 			0x00		/* PBLKLEN for boot processor */
 			) {
 		}
 		Processor(
 			C007,		/* name space name */
 			7,		/* Unique number for this processor */
-			0x810		,		/* PBLK system I/O address !hardcoded! */
+			0x810,		/* PBLK system I/O address !hardcoded! */
 			0x00		/* PBLKLEN for boot processor */
 			) {
 		}
diff --git a/src/mainboard/amd/inagua/dsdt.asl b/src/mainboard/amd/inagua/dsdt.asl
index 7708676..46b92f1 100644
--- a/src/mainboard/amd/inagua/dsdt.asl
+++ b/src/mainboard/amd/inagua/dsdt.asl
@@ -74,21 +74,21 @@ DefinitionBlock (
 		Processor(
 			C001,		/* name space name */
 			1,		/* Unique number for this processor */
-			0x810		,		/* PBLK system I/O address !hardcoded! */
+			0x810,		/* PBLK system I/O address !hardcoded! */
 			0x00		/* PBLKLEN for boot processor */
 			) {
 		}
 		Processor(
 			C002,		/* name space name */
 			2,		/* Unique number for this processor */
-			0x810		,		/* PBLK system I/O address !hardcoded! */
+			0x810,		/* PBLK system I/O address !hardcoded! */
 			0x00		/* PBLKLEN for boot processor */
 			) {
 		}
 		Processor(
 			C003,		/* name space name */
 			3,		/* Unique number for this processor */
-			0x810		,		/* PBLK system I/O address !hardcoded! */
+			0x810,		/* PBLK system I/O address !hardcoded! */
 			0x00		/* PBLKLEN for boot processor */
 			) {
 		}
diff --git a/src/mainboard/amd/persimmon/dsdt.asl b/src/mainboard/amd/persimmon/dsdt.asl
index bd9ce74..dd7b4b1 100644
--- a/src/mainboard/amd/persimmon/dsdt.asl
+++ b/src/mainboard/amd/persimmon/dsdt.asl
@@ -74,21 +74,21 @@ DefinitionBlock (
 		Processor(
 			C001,		/* name space name */
 			1,		/* Unique number for this processor */
-			0x810		,		/* PBLK system I/O address !hardcoded! */
+			0x810,		/* PBLK system I/O address !hardcoded! */
 			0x00		/* PBLKLEN for boot processor */
 			) {
 		}
 		Processor(
 			C002,		/* name space name */
 			2,		/* Unique number for this processor */
-			0x810		,		/* PBLK system I/O address !hardcoded! */
+			0x810,		/* PBLK system I/O address !hardcoded! */
 			0x00		/* PBLKLEN for boot processor */
 			) {
 		}
 		Processor(
 			C003,		/* name space name */
 			3,		/* Unique number for this processor */
-			0x810		,		/* PBLK system I/O address !hardcoded! */
+			0x810,		/* PBLK system I/O address !hardcoded! */
 			0x00		/* PBLKLEN for boot processor */
 			) {
 		}
diff --git a/src/mainboard/amd/south_station/dsdt.asl b/src/mainboard/amd/south_station/dsdt.asl
index b18bcb2..958295b 100644
--- a/src/mainboard/amd/south_station/dsdt.asl
+++ b/src/mainboard/amd/south_station/dsdt.asl
@@ -74,21 +74,21 @@ DefinitionBlock (
 		Processor(
 			C001,		/* name space name */
 			1,		/* Unique number for this processor */
-			0x810		,		/* PBLK system I/O address !hardcoded! */
+			0x810,		/* PBLK system I/O address !hardcoded! */
 			0x00		/* PBLKLEN for boot processor */
 			) {
 		}
 		Processor(
 			C002,		/* name space name */
 			2,		/* Unique number for this processor */
-			0x810		,		/* PBLK system I/O address !hardcoded! */
+			0x810,		/* PBLK system I/O address !hardcoded! */
 			0x00		/* PBLKLEN for boot processor */
 			) {
 		}
 		Processor(
 			C003,		/* name space name */
 			3,		/* Unique number for this processor */
-			0x810		,		/* PBLK system I/O address !hardcoded! */
+			0x810,		/* PBLK system I/O address !hardcoded! */
 			0x00		/* PBLKLEN for boot processor */
 			) {
 		}
diff --git a/src/mainboard/amd/torpedo/dsdt.asl b/src/mainboard/amd/torpedo/dsdt.asl
index 758fba5..61ceca0 100755
--- a/src/mainboard/amd/torpedo/dsdt.asl
+++ b/src/mainboard/amd/torpedo/dsdt.asl
@@ -60,21 +60,21 @@ DefinitionBlock (
 		Processor(
 			C001,		/* name space name */
 			1,		/* Unique number for this processor */
-			0x810		,		/* PBLK system I/O address !hardcoded! */
+			0x810,		/* PBLK system I/O address !hardcoded! */
 			0x00		/* PBLKLEN for boot processor */
 			) {
 		}
 		Processor(
 			C002,		/* name space name */
 			2,		/* Unique number for this processor */
-			0x810		,		/* PBLK system I/O address !hardcoded! */
+			0x810,		/* PBLK system I/O address !hardcoded! */
 			0x00		/* PBLKLEN for boot processor */
 			) {
 		}
 		Processor(
 			C003,		/* name space name */
 			3,		/* Unique number for this processor */
-			0x810		,		/* PBLK system I/O address !hardcoded! */
+			0x810,		/* PBLK system I/O address !hardcoded! */
 			0x00		/* PBLKLEN for boot processor */
 			) {
 		}
diff --git a/src/mainboard/amd/union_station/dsdt.asl b/src/mainboard/amd/union_station/dsdt.asl
index 7e49fd4..0752640 100644
--- a/src/mainboard/amd/union_station/dsdt.asl
+++ b/src/mainboard/amd/union_station/dsdt.asl
@@ -74,21 +74,21 @@ DefinitionBlock (
 		Processor(
 			C001,		/* name space name */
 			1,		/* Unique number for this processor */
-			0x810		,		/* PBLK system I/O address !hardcoded! */
+			0x810,		/* PBLK system I/O address !hardcoded! */
 			0x00		/* PBLKLEN for boot processor */
 			) {
 		}
 		Processor(
 			C002,		/* name space name */
 			2,		/* Unique number for this processor */
-			0x810		,		/* PBLK system I/O address !hardcoded! */
+			0x810,		/* PBLK system I/O address !hardcoded! */
 			0x00		/* PBLKLEN for boot processor */
 			) {
 		}
 		Processor(
 			C003,		/* name space name */
 			3,		/* Unique number for this processor */
-			0x810		,		/* PBLK system I/O address !hardcoded! */
+			0x810,		/* PBLK system I/O address !hardcoded! */
 			0x00		/* PBLKLEN for boot processor */
 			) {
 		}
diff --git a/src/mainboard/asrock/e350m1/dsdt.asl b/src/mainboard/asrock/e350m1/dsdt.asl
index c2ea1fb..1cd88b8 100644
--- a/src/mainboard/asrock/e350m1/dsdt.asl
+++ b/src/mainboard/asrock/e350m1/dsdt.asl
@@ -74,21 +74,21 @@ DefinitionBlock (
 		Processor(
 			C001,		/* name space name */
 			1,		/* Unique number for this processor */
-			0x810		,		/* PBLK system I/O address !hardcoded! */
+			0x810,		/* PBLK system I/O address !hardcoded! */
 			0x00		/* PBLKLEN for boot processor */
 			) {
 		}
 		Processor(
 			C002,		/* name space name */
 			2,		/* Unique number for this processor */
-			0x810		,		/* PBLK system I/O address !hardcoded! */
+			0x810,		/* PBLK system I/O address !hardcoded! */
 			0x00		/* PBLKLEN for boot processor */
 			) {
 		}
 		Processor(
 			C003,		/* name space name */
 			3,		/* Unique number for this processor */
-			0x810		,		/* PBLK system I/O address !hardcoded! */
+			0x810,		/* PBLK system I/O address !hardcoded! */
 			0x00		/* PBLKLEN for boot processor */
 			) {
 		}



More information about the coreboot mailing list