From a4477db23543dfec0f3e1f36b6f4b98ab38d4796 Mon Sep 17 00:00:00 2001 From: Enric Balletbo i Serra Date: Wed, 3 Aug 2011 19:20:24 -0700 Subject: [PATCH] Fix warning in lib/board.c This patch fixes following warning: board.c: In function .init_func_i2c.: board.c:55:2: warning: implicit declaration of function .i2c_init. Signed-off-by: Enric Balletbo i Serra Signed-off-by: Anand Gadiyar --- lib/board.c | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/board.c b/lib/board.c index fac5f77..0f6b960 100644 --- a/lib/board.c +++ b/lib/board.c @@ -31,6 +31,7 @@ */ #include +#include #include #include #include -- 2.39.5