Furquan Shaikh (furquan@google.com) just uploaded a new patch set to gerrit, which you can find at https://review.coreboot.org/15997
-gerrit
commit b23075727d665462f3926a942b1169f3574c29ca Author: Furquan Shaikh furquan@google.com Date: Sat Jul 30 11:19:13 2016 -0700
elog: Include declarations for boot count functions unconditionally
There is no need to add guards around boot_count_* functions since the static definition of boot_count_read is anyways unused.
BUG=chrome-os-partner:55473
Change-Id: I553277cdc09a8af420ecf7caefcb59bc3dcb28f1 Signed-off-by: Furquan Shaikh furquan@google.com --- src/include/elog.h | 4 ---- 1 file changed, 4 deletions(-)
diff --git a/src/include/elog.h b/src/include/elog.h index b94a281..3f949bf 100644 --- a/src/include/elog.h +++ b/src/include/elog.h @@ -171,11 +171,7 @@ static inline int elog_smbios_write_type15(unsigned long *current,
extern u32 gsmi_exec(u8 command, u32 *param);
-#if CONFIG_ELOG_BOOT_COUNT u32 boot_count_read(void); u32 boot_count_increment(void); -#else -static inline u32 boot_count_read(void) { return 0; } -#endif /* CONFIG_ELOG_BOOT_COUNT */
#endif /* ELOG_H_ */