From: Tian Tao Date: Mon, 21 Sep 2020 01:53:23 +0000 (+0800) Subject: efi/libstub: Fix missing-prototypes in string.c X-Git-Tag: v5.10-rc1~201^2^2~3 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=aad0f3d693bbb356b9478879ecd245d4f7a2beb0;p=thirdparty%2Fkernel%2Flinux.git efi/libstub: Fix missing-prototypes in string.c Fix the following warnings. drivers/firmware/efi/libstub/string.c:83:20: warning: no previous prototype for ‘simple_strtoull’ [-Wmissing-prototypes] drivers/firmware/efi/libstub/string.c:108:6: warning: no previous prototype for ‘simple_strtol’ [-Wmissing-prototypes] Signed-off-by: Tian Tao Link: https://lore.kernel.org/r/1600653203-57909-1-git-send-email-tiantao6@hisilicon.com Signed-off-by: Ard Biesheuvel --- diff --git a/drivers/firmware/efi/libstub/string.c b/drivers/firmware/efi/libstub/string.c index 1ac2f87647152..5d13e43869ee5 100644 --- a/drivers/firmware/efi/libstub/string.c +++ b/drivers/firmware/efi/libstub/string.c @@ -7,6 +7,7 @@ */ #include +#include #include #include