Include appropriate header file include/linux/elfcore.h in kernel/elfcore.c because it has prototype declaration of function defined in kernel/elfcore.c.
This eliminates the following warning in kernel/elfcore.c: kernel/elfcore.c:6:17: warning: no previous prototype for ‘elf_core_extra_phdrs’ [-Wmissing-prototypes] kernel/elfcore.c:11:12: warning: no previous prototype for ‘elf_core_write_extra_phdrs’ [-Wmissing-prototypes] kernel/elfcore.c:16:12: warning: no previous prototype for ‘elf_core_write_extra_data’ [-Wmissing-prototypes] kernel/elfcore.c:21:15: warning: no previous prototype for ‘elf_core_extra_data_size’ [-Wmissing-prototypes] Signed-off-by: Rashika Kheria <rashika.khe...@gmail.com> Reviewed-by: Josh Triplett <j...@joshtriplett.org> --- kernel/elfcore.c | 1 + 1 file changed, 1 insertion(+) diff --git a/kernel/elfcore.c b/kernel/elfcore.c index e556751..a2b29b9 100644 --- a/kernel/elfcore.c +++ b/kernel/elfcore.c @@ -2,6 +2,7 @@ #include <linux/fs.h> #include <linux/mm.h> #include <linux/binfmts.h> +#include <linux/elfcore.h> Elf_Half __weak elf_core_extra_phdrs(void) { -- 1.7.9.5 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/