elog: fix default elog_add_event_raw() declaration
When CONFIG_ELOG isn't used default empty inline functions are provided, however the elog_add_event_raw() had the wrong type signature. Fix that. BUG=chrome-os-partner:59395 Change-Id: Iaee68440bbafc1e91c88a7b03e283fc3e72de0a3 Signed-off-by: Aaron Durbin <adurbin@chromium.org> Reviewed-on: https://review.coreboot.org/17232 Tested-by: build bot (Jenkins) Reviewed-by: Furquan Shaikh <furquan@google.com>
This commit is contained in:
parent
e0ed9025cf
commit
d9b1050dfb
|
@ -158,7 +158,8 @@ extern int elog_smbios_write_type15(unsigned long *current, int handle);
|
|||
/* Stubs to help avoid littering sources with #if CONFIG_ELOG */
|
||||
static inline int elog_init(void) { return -1; }
|
||||
static inline int elog_clear(void) { return -1; }
|
||||
static inline int elog_add_event_raw(void) { return 0; }
|
||||
static inline int elog_add_event_raw(u8 event_type, void *data,
|
||||
u8 data_size) { return 0; }
|
||||
static inline int elog_add_event(u8 event_type) { return 0; }
|
||||
static inline int elog_add_event_byte(u8 event_type, u8 data) { return 0; }
|
||||
static inline int elog_add_event_word(u8 event_type, u16 data) { return 0; }
|
||||
|
|
Loading…
Reference in New Issue