libpayload: If no video drivers initialize in video_init, return 1.

Change-Id: I56f810dfa6654ac1e9d1696ad15e7f1b8bfe59bd
Signed-off-by: Gabe Black <gabeblack@google.com>
Reviewed-on: http://review.coreboot.org/2652
Tested-by: build bot (Jenkins)
Reviewed-by: Patrick Georgi <patrick@georgi-clan.de>
Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
This commit is contained in:
Gabe Black 2013-01-15 15:48:55 -08:00 committed by Stefan Reinauer
parent b7b57d9751
commit 1617e1f0ab
1 changed files with 1 additions and 0 deletions

View File

@ -216,6 +216,7 @@ int video_init(void)
video_console_fixup_cursor();
return 0;
}
return 1;
}
int video_console_init(void)