usbdebug: Fix build for ROMCC boards
Header file is not compatible with romcc, just drop it as a romstage built with romcc cannot use usbdebug anyway. Change-Id: If7f8f22d6a8fa1f02157df281f82f02b72b6a609 Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com> Reviewed-on: http://review.coreboot.org/4006 Tested-by: build bot (Jenkins) Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net> Reviewed-by: Ronald G. Minnich <rminnich@gmail.com>
This commit is contained in:
parent
6583a8108c
commit
b0aec8f070
|
@ -27,7 +27,7 @@
|
|||
#if CONFIG_CONSOLE_SERIAL
|
||||
#include <uart.h>
|
||||
#endif
|
||||
#if CONFIG_USBDEBUG
|
||||
#if CONFIG_USBDEBUG && !defined(__ROMCC__)
|
||||
#include <usbdebug.h>
|
||||
#endif
|
||||
#if CONFIG_CONSOLE_NE2K
|
||||
|
|
Loading…
Reference in New Issue