diff options
| author | Simon Glass <[email protected]> | 2026-03-05 19:36:12 -0700 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2026-03-18 13:17:34 -0600 |
| commit | 5cc969caf0ba247d8464af1fd87110e73309e37d (patch) | |
| tree | 4b599ec915642a371bd678e8488b8eab33b93c91 /include | |
| parent | 3632b5d63c8099c59c936c3653ece5bd04d8f6c7 (diff) | |
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 <[email protected]>
Reviewed-by: Tom Rini <[email protected]>
Diffstat (limited to 'include')
| -rw-r--r-- | include/bootstage.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/include/bootstage.h b/include/bootstage.h index 528d0ca0614..62fb99110f0 100644 --- a/include/bootstage.h +++ b/include/bootstage.h @@ -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 */ |
