diff options
author | Elyes HAOUAS <ehaouas@noos.fr> | 2022-02-04 19:44:16 +0100 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2022-02-08 16:19:00 +0000 |
commit | 22ad8f25084bd923a5c0a1d260f5a70db02739c9 (patch) | |
tree | d92833887ae5c5932e71199cb044317d5f9bc308 /src/drivers | |
parent | c168f115e4eef82cef44d0c757fb03c6cb97fb95 (diff) |
drivers/intel/fsp1_1: Drop duplicated "ERROR" in log messages
Change-Id: I25f56a6f3ca1814666929e91400f52b75a5d607d
Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/61630
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Raul Rangel <rrangel@chromium.org>
Diffstat (limited to 'src/drivers')
-rw-r--r-- | src/drivers/intel/fsp1_1/raminit.c | 8 | ||||
-rw-r--r-- | src/drivers/intel/fsp1_1/ramstage.c | 5 |
2 files changed, 5 insertions, 8 deletions
diff --git a/src/drivers/intel/fsp1_1/raminit.c b/src/drivers/intel/fsp1_1/raminit.c index c74955e9d3..78700a9b0c 100644 --- a/src/drivers/intel/fsp1_1/raminit.c +++ b/src/drivers/intel/fsp1_1/raminit.c @@ -193,8 +193,7 @@ void raminit(struct romstage_params *params) /* Verify all the HOBs are present */ if (fsp_verification_failure) - printk(BIOS_ERR, - "ERROR - Missing one or more required FSP HOBs!\n"); + printk(BIOS_ERR, "Missing one or more required FSP HOBs!\n"); /* Display the HOBs */ if (CONFIG(DISPLAY_HOBS)) @@ -209,8 +208,7 @@ void raminit(struct romstage_params *params) if ((fsp_memory != NULL) && (cbmem_root != NULL) && (cbmem_root->PhysicalStart <= fsp_memory->PhysicalStart)) { fsp_verification_failure = 1; - printk(BIOS_ERR, - "ERROR - FSP reserved memory above CBMEM root!\n"); + printk(BIOS_ERR, "FSP reserved memory above CBMEM root!\n"); } /* Verify that the FSP memory was properly reserved */ @@ -218,7 +216,7 @@ void raminit(struct romstage_params *params) (fsp_memory->PhysicalStart != (unsigned int)fsp_reserved_memory_area))) { fsp_verification_failure = 1; - printk(BIOS_ERR, "ERROR - Reserving FSP memory area!\n"); + printk(BIOS_ERR, "Reserving FSP memory area!\n"); if (CONFIG(HAVE_SMI_HANDLER) && cbmem_root != NULL) { size_t delta_bytes = smm_base diff --git a/src/drivers/intel/fsp1_1/ramstage.c b/src/drivers/intel/fsp1_1/ramstage.c index dcb32c7907..d85ba7cfc5 100644 --- a/src/drivers/intel/fsp1_1/ramstage.c +++ b/src/drivers/intel/fsp1_1/ramstage.c @@ -20,7 +20,7 @@ static void display_hob_info(FSP_INFO_HEADER *fsp_info_header) /* Verify the HOBs */ if (hob_list_ptr == NULL) { - printk(BIOS_ERR, "ERROR - HOB pointer is NULL!\n"); + printk(BIOS_ERR, "HOB pointer is NULL!\n"); return; } @@ -41,8 +41,7 @@ static void display_hob_info(FSP_INFO_HEADER *fsp_info_header) !get_next_guid_hob(&graphics_info_guid, hob_list_ptr) && CONFIG(DISPLAY_HOBS)) { printk(BIOS_ERR, "7.5: EFI_PEI_GRAPHICS_INFO_HOB missing!\n"); - printk(BIOS_ERR, - "ERROR - Missing one or more required FSP HOBs!\n"); + printk(BIOS_ERR, "Missing one or more required FSP HOBs!\n"); } } |