[coreboot] New patch to review for coreboot: 2d4ed1d Chromebooks: mainboard.c: Do not spell Chromebook in CamelCase

Paul Menzel (paulepanter@users.sourceforge.net) gerrit at coreboot.org
Tue Feb 12 13:17:56 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/2370

-gerrit

commit 2d4ed1d4ddf6036901189899cf2876aa831cab60
Author: Paul Menzel <paulepanter at users.sourceforge.net>
Date:   Tue Feb 12 13:12:51 2013 +0100

    Chromebooks: mainboard.c: Do not spell Chromebook in CamelCase
    
    »Chromebook« is the official spelling [1]. So correct that with
    the following command.
    
        $ git grep -l ChromeBook | xargs sed -i s,ChromeBook,Chromebook,
    
    The incorrect spelling was only used for the chip name.
    
    [1] http://www.google.com/intl/en/chrome/devices/hp-pavilion-chromebook.html#hp-pav
    
    Change-Id: I9c19f399a3e3d36bd644ec375822daa384a14961
    Signed-off-by: Paul Menzel <paulepanter at users.sourceforge.net>
---
 src/mainboard/google/butterfly/mainboard.c | 2 +-
 src/mainboard/google/parrot/mainboard.c    | 2 +-
 src/mainboard/google/snow/mainboard.c      | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/mainboard/google/butterfly/mainboard.c b/src/mainboard/google/butterfly/mainboard.c
index acab762..53b9631 100644
--- a/src/mainboard/google/butterfly/mainboard.c
+++ b/src/mainboard/google/butterfly/mainboard.c
@@ -502,6 +502,6 @@ static void mainboard_enable(device_t dev)
 }
 
 struct chip_operations mainboard_ops = {
-	CHIP_NAME("Google Butterfly ChromeBook")
+	CHIP_NAME("Google Butterfly Chromebook")
 	.enable_dev = mainboard_enable,
 };
diff --git a/src/mainboard/google/parrot/mainboard.c b/src/mainboard/google/parrot/mainboard.c
index 32a79d9..7f5b01e 100644
--- a/src/mainboard/google/parrot/mainboard.c
+++ b/src/mainboard/google/parrot/mainboard.c
@@ -323,6 +323,6 @@ static void mainboard_enable(device_t dev)
 }
 
 struct chip_operations mainboard_ops = {
-	CHIP_NAME("Google Parrot ChromeBook")
+	CHIP_NAME("Google Parrot Chromebook")
 	.enable_dev = mainboard_enable,
 };
diff --git a/src/mainboard/google/snow/mainboard.c b/src/mainboard/google/snow/mainboard.c
index efe6672..4a0d181 100644
--- a/src/mainboard/google/snow/mainboard.c
+++ b/src/mainboard/google/snow/mainboard.c
@@ -70,7 +70,7 @@ int board_get_config(void)
 
 #if 0
 struct chip_operations mainboard_ops = {
-	.name	= "Samsung/Google ARM ChromeBook",
+	.name	= "Samsung/Google ARM Chromebook",
 	.enable_dev = mainboard_enable,
 };
 #endif



More information about the coreboot mailing list