mirror of
https://git.codelinaro.org/clo/qsdk/oss/boot/u-boot-2016.git
synced 2025-12-10 07:44:53 +01:00
common:console: add missing include
search_device is declared in iomux, but console only had the definition. This prevents a warning. Signed-off-by: Jeroen Hofstee <jeroen@myspectrum.nl>
This commit is contained in:
parent
73144dae0b
commit
482f4691a3
1 changed files with 2 additions and 1 deletions
|
|
@ -7,6 +7,7 @@
|
|||
|
||||
#include <common.h>
|
||||
#include <stdarg.h>
|
||||
#include <iomux.h>
|
||||
#include <malloc.h>
|
||||
#include <os.h>
|
||||
#include <serial.h>
|
||||
|
|
@ -621,7 +622,7 @@ inline void dbg(const char *fmt, ...)
|
|||
|
||||
}
|
||||
#else
|
||||
inline void dbg(const char *fmt, ...)
|
||||
static inline void dbg(const char *fmt, ...)
|
||||
{
|
||||
}
|
||||
#endif
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue