hexagon: vdso: include asm/elf.h for arch_setup_additional_pages() prototype
authorNathan Chancellor <nathan@kernel.org>
Thu, 30 Nov 2023 22:58:28 +0000 (15:58 -0700)
committerAndrew Morton <akpm@linux-foundation.org>
Mon, 11 Dec 2023 01:21:36 +0000 (17:21 -0800)
commitd75eb3344ef1888885fcace3d34f3aceafee9aae
tree7b27f54c92ca88e33ed981de94bc0bce285c956c
parent54ba0eab469d594dd1ef432a8de48724ae119336
hexagon: vdso: include asm/elf.h for arch_setup_additional_pages() prototype

Clang warns:

  arch/hexagon/kernel/vdso.c:49:5: warning: no previous prototype for function 'arch_setup_additional_pages' [-Wmissing-prototypes]
     49 | int arch_setup_additional_pages(struct linux_binprm *bprm, int uses_interp)
        |     ^
  arch/hexagon/kernel/vdso.c:49:1: note: declare 'static' if the function is not intended to be used outside of this translation unit
     49 | int arch_setup_additional_pages(struct linux_binprm *bprm, int uses_interp)
        | ^
        | static
  1 warning generated.

Include the header that declares the prototype to clear up the warning.

Link: https://lkml.kernel.org/r/20231130-hexagon-missing-prototypes-v1-15-5c34714afe9e@kernel.org
Signed-off-by: Nathan Chancellor <nathan@kernel.org>
Cc: Arnd Bergmann <arnd@arndb.de>
Cc: Brian Cain <bcain@quicinc.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
arch/hexagon/kernel/vdso.c