Skip to content

Commit

Permalink
soc/intel/common/block/cse/cse_eop.c: join userfacing strings to sing…
Browse files Browse the repository at this point in the history
…le lines

Rationale: coreboot coding style guidelines
Signed-off-by: Michał Kopeć <[email protected]>
  • Loading branch information
mkopec committed Sep 11, 2024
1 parent ad8d8fa commit 38697c1
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions src/soc/intel/common/block/cse/cse_eop.c
Original file line number Diff line number Diff line change
Expand Up @@ -291,19 +291,16 @@ static bool is_cse_eop_supported(void)
/* CSE Lite */
if ((CONFIG(SOC_INTEL_CSE_LITE_SKU) && vboot_recovery_mode_enabled()) &&
cse_is_hfs1_com_soft_temp_disable()) {
printk(BIOS_INFO, "HECI: coreboot in recovery mode; found CSE Lite in expected "
"SOFT TEMP DISABLE state, skipping EOP\n");
printk(BIOS_INFO, "HECI: coreboot in recovery mode; found CSE Lite in expected SOFT TEMP DISABLE state, skipping EOP\n");
return false;
}
/* Other CSE Type */
if (cse_is_hfs1_com_soft_temp_disable()) {
printk(BIOS_INFO, "HECI: coreboot in recovery mode; found CSE in expected "
"SOFT TEMP DISABLE state, skipping EOP\n");
printk(BIOS_INFO, "HECI: coreboot in recovery mode; found CSE in expected SOFT TEMP DISABLE state, skipping EOP\n");
return false;
}
if (cse_is_hfs1_com_debug()) {
printk(BIOS_INFO, "HECI: coreboot in recovery mode; found CSE in expected "
"Debug Mode state, skipping EOP\n");
printk(BIOS_INFO, "HECI: coreboot in recovery mode; found CSE in expected Debug Mode state, skipping EOP\n");
return false;
}

Expand Down

0 comments on commit 38697c1

Please sign in to comment.