From 482f4691a32d3e738b4948c98a893f7f629984ea Mon Sep 17 00:00:00 2001 From: Jeroen Hofstee Date: Wed, 8 Oct 2014 22:57:48 +0200 Subject: [PATCH] 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 --- common/console.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/common/console.c b/common/console.c index 5a2f411600..4695386a33 100644 --- a/common/console.c +++ b/common/console.c @@ -7,6 +7,7 @@ #include #include +#include #include #include #include @@ -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 -- 2.39.2