diff options
author | Martin Roth <martinroth@google.com> | 2017-06-03 20:00:36 -0600 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2017-06-07 12:08:55 +0200 |
commit | e81ce0483db982c741eebdda649111eee22a853b (patch) | |
tree | 4ed82dd5a1505c26caf63d640beffcd205c4520b /payloads/coreinfo | |
parent | 59e21136708a7619c24c3a79bdb87431b5b624df (diff) |
payloads: change coreboot to lowercase
The word 'coreboot' should always be written in lowercase, even at the
start of a sentence.
Change-Id: I2ec18ca55e0ea672343a951ab81a24a5630f45fd
Signed-off-by: Martin Roth <martinroth@google.com>
Reviewed-on: https://review.coreboot.org/20028
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Philippe Mathieu-Daudé <philippe.mathieu.daude@gmail.com>
Reviewed-by: Philipp Deppenwiese <zaolin.daisuki@gmail.com>
Diffstat (limited to 'payloads/coreinfo')
-rw-r--r-- | payloads/coreinfo/bootlog_module.c | 2 | ||||
-rw-r--r-- | payloads/coreinfo/coreboot_module.c | 6 | ||||
-rw-r--r-- | payloads/coreinfo/timestamps_module.c | 2 |
3 files changed, 5 insertions, 5 deletions
diff --git a/payloads/coreinfo/bootlog_module.c b/payloads/coreinfo/bootlog_module.c index b3f0deeea5..8a9e7a3e04 100644 --- a/payloads/coreinfo/bootlog_module.c +++ b/payloads/coreinfo/bootlog_module.c @@ -170,7 +170,7 @@ err_free: static int bootlog_module_redraw(WINDOW *win) { - print_module_title(win, "Coreboot Bootlog"); + print_module_title(win, "coreboot Bootlog"); if (!g_buf) { return -1; diff --git a/payloads/coreinfo/coreboot_module.c b/payloads/coreinfo/coreboot_module.c index 0b6cca8c31..adf8f1434f 100644 --- a/payloads/coreinfo/coreboot_module.c +++ b/payloads/coreinfo/coreboot_module.c @@ -42,10 +42,10 @@ int coreboot_module_redraw(WINDOW *win) int row = 2; int i; - print_module_title(win, "Coreboot Tables"); + print_module_title(win, "coreboot Tables"); if (tables_good) { - mvwprintw(win, row++, 1, "No Coreboot tables were found"); + mvwprintw(win, row++, 1, "No coreboot tables were found"); return 0; } @@ -249,7 +249,7 @@ static int coreboot_module_init(void) } struct coreinfo_module coreboot_module = { - .name = "Coreboot", + .name = "coreboot", .init = coreboot_module_init, .redraw = coreboot_module_redraw, }; diff --git a/payloads/coreinfo/timestamps_module.c b/payloads/coreinfo/timestamps_module.c index eedb3c9439..020fcc6971 100644 --- a/payloads/coreinfo/timestamps_module.c +++ b/payloads/coreinfo/timestamps_module.c @@ -228,7 +228,7 @@ static int timestamps_module_init(void) static int timestamps_module_redraw(WINDOW *win) { - print_module_title(win, "Coreboot Timestamps"); + print_module_title(win, "coreboot Timestamps"); if (!g_buf) return -1; |