Skip to content
Snippets Groups Projects
Commit e802ee0f authored by Simon Glass's avatar Simon Glass
Browse files

bootstage: Add stubs for new bootstage functions


Some functions don't have a stub for when CONFIG_BOOTSTAGE is not defined.
Add one to avoid #ifdefs in the code when this is used in U-Boot.

Signed-off-by: default avatarSimon Glass <sjg@chromium.org>
Reviewed-by: default avatarChe-Liang Chiou <clchiou@chromium.org>
Reviewed-by: default avatarTom Wai-Hong Tam <waihong@chromium.org>
parent d0b6f247
No related branches found
No related tags found
No related merge requests found
......@@ -315,6 +315,12 @@ int bootstage_stash(void *base, int size);
int bootstage_unstash(void *base, int size);
#else
static inline ulong bootstage_add_record(enum bootstage_id id,
const char *name, int flags, ulong mark)
{
return 0;
}
/*
* This is a dummy implementation which just calls show_boot_progress(),
* and won't even do that unless CONFIG_SHOW_BOOT_PROGRESS is defined
......@@ -337,6 +343,16 @@ static inline ulong bootstage_mark_name(enum bootstage_id id, const char *name)
return 0;
}
static inline uint32_t bootstage_start(enum bootstage_id id, const char *name)
{
return 0;
}
static inline uint32_t bootstage_accum(enum bootstage_id id)
{
return 0;
}
static inline int bootstage_stash(void *base, int size)
{
return 0; /* Pretend to succeed */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment