From 521bdb932a4186b40ba94be24a4a6f2f73380f6c Mon Sep 17 00:00:00 2001 From: Marek Szyprowski Date: Fri, 17 Sep 2021 10:16:45 +0200 Subject: [PATCH] arm: rpi: fix build warning MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Add 'usb.h' include previously included via 'usb/xhci.h' in the reverted commit. This fixes following build warning: board/raspberrypi/rpi/rpi.c:467:2: warning: implicit declaration of function ‘usb_init’; did you mean ‘lmb_init’? [-Wimplicit-function-declaration] Signed-off-by: Marek Szyprowski Change-Id: Ia8b5cb0d49cef0c3b3c43a70fa4bb240172af2e5 --- board/raspberrypi/rpi/rpi.c | 1 + 1 file changed, 1 insertion(+) diff --git a/board/raspberrypi/rpi/rpi.c b/board/raspberrypi/rpi/rpi.c index 82fde5f112..a89ae0646b 100644 --- a/board/raspberrypi/rpi/rpi.c +++ b/board/raspberrypi/rpi/rpi.c @@ -23,6 +23,7 @@ #ifdef CONFIG_ARM64 #include #endif +#include #include #include -- 2.34.1