diff options
Diffstat (limited to 'src/mainboard/intel')
-rw-r--r-- | src/mainboard/intel/galileo/vboot.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/mainboard/intel/galileo/vboot.c b/src/mainboard/intel/galileo/vboot.c index ffea7698b0..b0fa2f2956 100644 --- a/src/mainboard/intel/galileo/vboot.c +++ b/src/mainboard/intel/galileo/vboot.c @@ -25,6 +25,7 @@ #include "gen2.h" #include <spi_flash.h> #include <vboot/vboot_common.h> +#include <vboot/vbnv.h> int clear_recovery_mode_switch(void) { @@ -98,3 +99,9 @@ void __attribute__((weak)) vboot_platform_prepare_reboot(void) /* Reset the TPM */ reg_script_run(script); } + +int vbnv_cmos_failed(void) +{ + /* Indicate no failure until RTC failure bits are supported. */ + return 0; +} |