aboutsummaryrefslogtreecommitdiff
path: root/src/mainboard/google/parrot/mainboard.c
diff options
context:
space:
mode:
authorPaul Menzel <paulepanter@users.sourceforge.net>2013-02-12 13:12:51 +0100
committerMarc Jones <marcj303@gmail.com>2013-02-14 19:25:54 +0100
commit7df4ec03035d0bbc6f206527164ac4839d29cd0b (patch)
tree4fdf1eef2add3384382e866f24734063b12604f0 /src/mainboard/google/parrot/mainboard.c
parent835df770e37b42c9a842ffe1696689bc21ad90e1 (diff)
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@users.sourceforge.net> Reviewed-on: http://review.coreboot.org/2370 Tested-by: build bot (Jenkins) Reviewed-by: Duncan Laurie <dlaurie@chromium.org> Reviewed-by: Marc Jones <marcj303@gmail.com>
Diffstat (limited to 'src/mainboard/google/parrot/mainboard.c')
-rw-r--r--src/mainboard/google/parrot/mainboard.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mainboard/google/parrot/mainboard.c b/src/mainboard/google/parrot/mainboard.c
index 32a79d92c2..7f5b01ef0d 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,
};