From: Arnd Bergmann Date: Fri, 2 Jun 2023 18:28:40 +0000 (+0100) Subject: ARM: 9312/1: vfp: include asm/neon.h in vfpmodule.c X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=2332c61592396f37ea1f7dcb6869e5a4905c6136;p=linux.git ARM: 9312/1: vfp: include asm/neon.h in vfpmodule.c Two functions defined here need the declaration in a header to avoid W=1 warnings: arch/arm/vfp/vfpmodule.c:735:6: error: no previous prototype for 'kernel_neon_begin' [-Werror=missing-prototypes] arch/arm/vfp/vfpmodule.c:768:6: error: no previous prototype for 'kernel_neon_end' [-Werror=missing-prototypes] Reviewed-by: Kees Cook Signed-off-by: Arnd Bergmann Signed-off-by: Russell King (Oracle) --- diff --git a/arch/arm/vfp/vfpmodule.c b/arch/arm/vfp/vfpmodule.c index 349dcb944a937..1ba5078c10258 100644 --- a/arch/arm/vfp/vfpmodule.c +++ b/arch/arm/vfp/vfpmodule.c @@ -25,6 +25,7 @@ #include #include #include +#include #include "vfpinstr.h" #include "vfp.h"