[coreboot-gerrit] New patch to review for coreboot: google/chromeos: backup -> back up

Patrick Georgi (pgeorgi@google.com) gerrit at coreboot.org
Tue Feb 9 14:10:56 CET 2016


Patrick Georgi (pgeorgi at google.com) just uploaded a new patch set to gerrit, which you can find at https://review.coreboot.org/13643

-gerrit

commit b3fe37f8362cd8f70a7163213548a465a54df546
Author: Patrick Georgi <pgeorgi at chromium.org>
Date:   Tue Feb 9 14:01:08 2016 +0100

    google/chromeos: backup -> back up
    
    See discussion on https://review.coreboot.org/13600 and
    https://review.coreboot.org/13601
    
    Change-Id: Ia8274b0b296d6b398f75c0d91a6fded4c5f57e10
    Signed-off-by: Patrick Georgi <pgeorgi at chromium.org>
---
 src/vendorcode/google/chromeos/Kconfig     | 2 +-
 src/vendorcode/google/chromeos/vbnv_cmos.c | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/vendorcode/google/chromeos/Kconfig b/src/vendorcode/google/chromeos/Kconfig
index 4a889b1..2a565dc 100644
--- a/src/vendorcode/google/chromeos/Kconfig
+++ b/src/vendorcode/google/chromeos/Kconfig
@@ -51,7 +51,7 @@ config CHROMEOS_VBNV_CMOS
 	  VBNV is stored in CMOS
 
 config CHROMEOS_VBNV_CMOS_BACKUP_TO_FLASH
-	bool "Backup Vboot non-volatile storage from CMOS to flash."
+	bool "Back up Vboot non-volatile storage from CMOS to flash."
 	default n
 	depends on CHROMEOS_VBNV_CMOS
 	help
diff --git a/src/vendorcode/google/chromeos/vbnv_cmos.c b/src/vendorcode/google/chromeos/vbnv_cmos.c
index 22acefa..6dfc74c 100644
--- a/src/vendorcode/google/chromeos/vbnv_cmos.c
+++ b/src/vendorcode/google/chromeos/vbnv_cmos.c
@@ -52,7 +52,7 @@ void save_vbnv_cmos(const uint8_t *vbnv_copy)
 }
 
 #if IS_ENABLED(CONFIG_CHROMEOS_VBNV_CMOS_BACKUP_TO_FLASH)
-static void backup_vbnv_cmos(void *unused)
+static void back_up_vbnv_cmos(void *unused)
 {
 	uint8_t vbnv_cmos[VBNV_BLOCK_SIZE];
 
@@ -62,5 +62,5 @@ static void backup_vbnv_cmos(void *unused)
 	/* Save to flash, will only be saved if different. */
 	save_vbnv_flash(vbnv_cmos);
 }
-BOOT_STATE_INIT_ENTRY(BS_POST_DEVICE, BS_ON_EXIT, backup_vbnv_cmos, NULL);
+BOOT_STATE_INIT_ENTRY(BS_POST_DEVICE, BS_ON_EXIT, back_up_vbnv_cmos, NULL);
 #endif



More information about the coreboot-gerrit mailing list