console: Change CONFIG_CHROMEOS requirement from do_printk_va_list()
CONFIG_VBOOT was recently moved to be independent from CONFIG_CHROMEOS. Change the code guard for do_printk_va_list() accordingly, since it's used by vboot (not Chrome OS) code. Change-Id: I44e868d2fd8e1368eeda2f10a35d0a2bd7259759 Signed-off-by: Julius Werner <jwerner@chromium.org> Reviewed-on: https://review.coreboot.org/16230 Tested-by: build bot (Jenkins) Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net> Reviewed-by: Aaron Durbin <adurbin@chromium.org> Reviewed-by: Kyösti Mälkki <kyosti.malkki@gmail.com>
This commit is contained in:
parent
4157bd8d61
commit
4f79e66185
|
@ -60,7 +60,7 @@ static inline void printk(int LEVEL, const char *fmt, ...) {}
|
|||
static inline void do_putchar(unsigned char byte) {}
|
||||
#endif
|
||||
|
||||
#if CONFIG_CHROMEOS
|
||||
#if IS_ENABLED(CONFIG_VBOOT)
|
||||
/* FIXME: Collision of varargs with AMD headers without guard. */
|
||||
#include <console/vtxprintf.h>
|
||||
#if __CONSOLE_ENABLE__
|
||||
|
|
Loading…
Reference in New Issue