summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/mainboard/google/guybrush/bootblock.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/mainboard/google/guybrush/bootblock.c b/src/mainboard/google/guybrush/bootblock.c
index 5b18d37cc6..46875ff43d 100644
--- a/src/mainboard/google/guybrush/bootblock.c
+++ b/src/mainboard/google/guybrush/bootblock.c
@@ -34,7 +34,11 @@ void bootblock_mainboard_early_init(void)
dword = pm_read32(0x74);
dword |= 3 << 10;
pm_write32(0x74, dword);
+}
+void bootblock_mainboard_init(void)
+{
+ /* Put FPMCU check after EC initialization */
if (variant_has_fpmcu())
variant_fpmcu_reset();
}