From: Marek Szyprowski Date: Fri, 17 Sep 2021 08:16:45 +0000 (+0200) Subject: arm: rpi: fix build warning X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=42b979f626804faa8e072329addcd0a3beb87ced;p=platform%2Fkernel%2Fu-boot.git arm: rpi: fix build warning 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 --- 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