[coreboot-gerrit] New patch to review for coreboot: e3c0846 Fix mainboard names for daisy and peach_pit

David Hendricks (dhendrix@chromium.org) gerrit at coreboot.org
Fri Jan 9 21:53:33 CET 2015


David Hendricks (dhendrix at chromium.org) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/8184

-gerrit

commit e3c084693b809bd39bfcfa3bf2f89512f7376564
Author: David Hendricks <dhendrix at chromium.org>
Date:   Fri Jan 9 11:46:43 2015 -0800

    Fix mainboard names for daisy and peach_pit
    
    This just fixes name members of mainboard_ops for daisy and
    peach_pit, which were never officially supported but used for
    development and proof-of-concept.
    
    Signed-off-by: David Hendricks <dhendrix at chromium.org>
    Change-Id: Ia1f9b62bc9d91ed634ec1eaa7f907e8aed977f96
---
 src/mainboard/google/daisy/mainboard.c     | 2 +-
 src/mainboard/google/peach_pit/mainboard.c | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/mainboard/google/daisy/mainboard.c b/src/mainboard/google/daisy/mainboard.c
index cf25967..25da0a3 100644
--- a/src/mainboard/google/daisy/mainboard.c
+++ b/src/mainboard/google/daisy/mainboard.c
@@ -348,7 +348,7 @@ static void mainboard_enable(device_t dev)
 }
 
 struct chip_operations mainboard_ops = {
-	.name	= "Samsung/Google ARM Chromebook",
+	.name	= "daisy",
 	.enable_dev = mainboard_enable,
 };
 
diff --git a/src/mainboard/google/peach_pit/mainboard.c b/src/mainboard/google/peach_pit/mainboard.c
index 01d19bc..6e8826f 100644
--- a/src/mainboard/google/peach_pit/mainboard.c
+++ b/src/mainboard/google/peach_pit/mainboard.c
@@ -482,7 +482,7 @@ static void mainboard_enable(device_t dev)
 }
 
 struct chip_operations mainboard_ops = {
-	.name	= "Samsung/Google ARM Chromebook",
+	.name	= "peach_pit",
 	.enable_dev = mainboard_enable,
 };
 



More information about the coreboot-gerrit mailing list