diff options
author | Ovidiu Panait <ovpanait@gmail.com> | 2020-04-20 10:31:45 +0300 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2020-05-01 11:34:01 -0400 |
commit | 5fb292f20f0d28bf916b4e480c9ab4a24713116c (patch) | |
tree | 0f5ebe2d97f93de8b6de9bab9306692222652606 /include/bedbug/type.h | |
parent | 5cf9e3b237f24e66ff1a657e954ffe3dc92e09eb (diff) |
cmd/bedbug.c: Make bedbug_init have a return value
Do this as a preparation for removing initr_bedbug wrapper from
common/board_r.c.
Signed-off-by: Ovidiu Panait <ovpanait@gmail.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'include/bedbug/type.h')
-rw-r--r-- | include/bedbug/type.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/bedbug/type.h b/include/bedbug/type.h index b7b447b1fe..3754c7f2b2 100644 --- a/include/bedbug/type.h +++ b/include/bedbug/type.h @@ -3,7 +3,7 @@ /* Supporting routines */ int bedbug_puts (const char *); -void bedbug_init (void); +int bedbug_init(void); void bedbug860_init (void); void do_bedbug_breakpoint (struct pt_regs *); void bedbug_main_loop (unsigned long, struct pt_regs *); |