From 2c09dbf4250be1f6c8fc391cc1882df35b47a421 Mon Sep 17 00:00:00 2001 From: Lukasz Majewski Date: Fri, 11 May 2018 16:51:19 +0200 Subject: [PATCH] display5: Add missing environment.h include to avoid warning MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Without this change the following warning shows up when building: board/liebherr/display5/display5.c:270:3: warning: implicit declaration of function ‘eth_env_set_enetaddr’ [-Wimplicit-function-declaration] This commit fixes this issue. Signed-off-by: Lukasz Majewski --- board/liebherr/display5/display5.c | 1 + 1 file changed, 1 insertion(+) diff --git a/board/liebherr/display5/display5.c b/board/liebherr/display5/display5.c index a3deba2..d838317 100644 --- a/board/liebherr/display5/display5.c +++ b/board/liebherr/display5/display5.c @@ -25,6 +25,7 @@ #include #include #include +#include #include #include