mirror of
https://github.com/u-boot/u-boot.git
synced 2025-05-08 19:11:53 +00:00
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>
This commit is contained in:
parent
5cf9e3b237
commit
5fb292f20f
2 changed files with 3 additions and 3 deletions
|
@ -44,10 +44,10 @@ int bedbug_puts (const char *str)
|
|||
* settings.
|
||||
* ====================================================================== */
|
||||
|
||||
void bedbug_init (void)
|
||||
int bedbug_init(void)
|
||||
{
|
||||
/* -------------------------------------------------- */
|
||||
return;
|
||||
return 0;
|
||||
} /* bedbug_init */
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue