summaryrefslogtreecommitdiff
path: root/common/vboot/vboot.c
diff options
context:
space:
mode:
Diffstat (limited to 'common/vboot/vboot.c')
-rw-r--r--common/vboot/vboot.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/common/vboot/vboot.c b/common/vboot/vboot.c
index 38d57ed45a..8a0e039aa2 100644
--- a/common/vboot/vboot.c
+++ b/common/vboot/vboot.c
@@ -10,6 +10,7 @@
#include "battery.h"
#include "charge_manager.h"
#include "chipset.h"
+#include "clock.h"
#include "console.h"
#include "flash.h"
#include "hooks.h"
@@ -243,8 +244,10 @@ void vboot_main(void)
return;
}
+ clock_enable_module(MODULE_FAST_CPU, 1);
/* If successful, this won't return. */
verify_and_jump();
+ clock_enable_module(MODULE_FAST_CPU, 0);
/* Failed to jump. Need recovery. */
request_recovery();