bootstage: Add some missing dummy functions

Neither bootstage_fdt_add_report() nor bootstage_report() has a dummy
double for when bootstage is disabled. Add them.

Signed-off-by: Simon Glass <simon.glass@canonical.com>
Reviewed-by: Tom Rini <trini@konsulko.com>
This commit is contained in:
Simon Glass
2026-03-05 19:36:12 -07:00
committed by Tom Rini
parent 3632b5d63c
commit 5cc969caf0

View File

@@ -435,6 +435,14 @@ static inline uint32_t bootstage_accum(enum bootstage_id id)
return 0;
}
static inline void bootstage_report(void)
{
}
static inline void bootstage_fdt_add_report(void)
{
}
static inline int bootstage_stash(void *base, int size)
{
return 0; /* Pretend to succeed */