vboot: Call verification_should_run directly in the if statement

Using a dedicated variable is slightly less readable and makes the code
less consistent, given that other test functions are called directly in
the if statements.

Change-Id: If52b2a4268acb1e2187574d15cc73a0c1d5fe9bb
Signed-off-by: Paul Kocialkowski <contact@paulk.fr>
Reviewed-on: https://review.coreboot.org/14817
Reviewed-by: Aaron Durbin <adurbin@chromium.org>
Tested-by: build bot (Jenkins)
This commit is contained in:
Paul Kocialkowski 2016-05-14 15:30:52 +02:00 committed by Martin Roth
parent abe2de8854
commit 1811768c64
1 changed files with 1 additions and 5 deletions

View File

@ -88,11 +88,7 @@ static int vboot_logic_executed(void)
static void vboot_prepare(void) static void vboot_prepare(void)
{ {
int run_verification; if (verification_should_run()) {
run_verification = verification_should_run();
if (run_verification) {
verstage_main(); verstage_main();
car_set_var(vboot_executed, 1); car_set_var(vboot_executed, 1);
} else if (verstage_should_load()) { } else if (verstage_should_load()) {