From 19cdefc994a2483bff4fbeeb232b68a84ab2171e Mon Sep 17 00:00:00 2001 From: Diego Dorta Date: Wed, 27 Sep 2017 13:12:40 -0300 Subject: [PATCH] mx6sabresd: Include header file MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit When compiling with W=1 the following warning is observed: board/freescale/mx6sabresd/mx6sabresd.c:586:5: warning: no previous prototype for ‘board_ehci_hcd_init’ [-Wmissing-prototypes] int board_ehci_hcd_init(int port) Remove this warning by including . Signed-off-by: Diego Dorta (cherry picked from commit c5ce67d184aa7ab3992fd3a96bca9f0a21dc6729) --- board/freescale/mx6sabresd/mx6sabresd.c | 1 + 1 file changed, 1 insertion(+) diff --git a/board/freescale/mx6sabresd/mx6sabresd.c b/board/freescale/mx6sabresd/mx6sabresd.c index 15268f8062..878e1e7c0b 100644 --- a/board/freescale/mx6sabresd/mx6sabresd.c +++ b/board/freescale/mx6sabresd/mx6sabresd.c @@ -31,6 +31,7 @@ #include #include "../common/pfuze.h" #include +#include DECLARE_GLOBAL_DATA_PTR;