From 74fc69c8897f67628ee9517744c720a3dc201f53 Mon Sep 17 00:00:00 2001 From: Guillaume La Roque Date: Mon, 16 May 2022 10:45:21 +0200 Subject: [PATCH] fastboot: add missing include MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit fix build warning due to missing header file: drivers/fastboot/fb_bcb_impl.c: In function ‘fastboot_set_reboot_flag’: drivers/fastboot/fb_bcb_impl.c:30:6: warning: implicit declaration of function ‘run_command’ [-Wimplicit-function-declaration] 30 | if (run_command(cmd, 0)) Fixes: 0ebf9842e5 9"fastboot: Add default fastboot_set_reboot_flag implementation") Signed-off-by: Guillaume La Roque --- drivers/fastboot/fb_bcb_impl.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/fastboot/fb_bcb_impl.c b/drivers/fastboot/fb_bcb_impl.c index 89ec3601b6..2addf5dec1 100644 --- a/drivers/fastboot/fb_bcb_impl.c +++ b/drivers/fastboot/fb_bcb_impl.c @@ -6,6 +6,7 @@ #include #include +#include /** * fastboot_set_reboot_flag() - Set flag to indicate reboot-bootloader