summaryrefslogtreecommitdiff
path: root/include/post.h
diff options
context:
space:
mode:
authorOvidiu Panait <ovidiu.panait@windriver.com>2020-11-28 11:43:10 +0300
committerTom Rini <trini@konsulko.com>2021-01-15 22:36:11 +0300
commit7addd3c6df61e10e74acf0859f65a82f28b771f5 (patch)
treebbbf3c1ac295b41da808de4dcbacb4be71f97752 /include/post.h
parentfb504b2c082c3ecd2ec7e550ae9504175c019b3a (diff)
downloadu-boot-7addd3c6df61e10e74acf0859f65a82f28b771f5.tar.xz
common: board_r: Drop initr_post_backlog wrapper
Add a return value to post_output_backlog and use it directly in the post-relocation init sequence, rather than using a wrapper stub. Signed-off-by: Ovidiu Panait <ovidiu.panait@windriver.com> Reviewed-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'include/post.h')
-rw-r--r--include/post.h11
1 files changed, 10 insertions, 1 deletions
diff --git a/include/post.h b/include/post.h
index eb218acde5..5695e2b533 100644
--- a/include/post.h
+++ b/include/post.h
@@ -107,7 +107,6 @@ int post_init_f (void);
void post_bootmode_init (void);
int post_bootmode_get (unsigned int * last_test);
void post_bootmode_clear (void);
-void post_output_backlog ( void );
int post_run (char *name, int flags);
int post_info (char *name);
int post_log (char *format, ...);
@@ -116,6 +115,16 @@ void post_reloc (void);
#endif
unsigned long post_time_ms (unsigned long base);
+/**
+ * post_output_backlog() - Print POST results
+ *
+ * Print POST results during the generic board init sequence, after
+ * relocation.
+ *
+ * Return: 0 if OK
+ */
+int post_output_backlog(void);
+
extern struct post_test post_list[];
extern unsigned int post_list_size;
extern int post_hotkeys_pressed(void);