The patch titled Subject: fs/binfmt_elf.c: delete trailing "return;" in functions returning "void" has been added to the -mm tree. Its filename is elf-delete-trailing-return-in-functions-returning-void.patch This patch should soon appear at http://ozlabs.org/~akpm/mmots/broken-out/elf-delete-trailing-return-in-functions-returning-void.patch and later at http://ozlabs.org/~akpm/mmotm/broken-out/elf-delete-trailing-return-in-functions-returning-void.patch Before you just go and hit "reply", please: a) Consider who else should be cc'ed b) Prefer to cc a suitable mailing list as well c) Ideally: find the original patch on the mailing list and do a reply-to-all to that, adding suitable additional cc's *** Remember to use Documentation/process/submit-checklist.rst when testing your code *** The -mm tree is included into linux-next and is updated there every 3-4 working days ------------------------------------------------------ From: Alexey Dobriyan <adobriyan@xxxxxxxxx> Subject: fs/binfmt_elf.c: delete trailing "return;" in functions returning "void" Link: http://lkml.kernel.org/r/20190314205042.GE18143@avx2 Signed-off-by: Alexey Dobriyan <adobriyan@xxxxxxxxx> Reviewed-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- --- a/fs/binfmt_elf.c~elf-delete-trailing-return-in-functions-returning-void +++ a/fs/binfmt_elf.c @@ -1457,8 +1457,6 @@ static void fill_elf_header(struct elfhd elf->e_ehsize = sizeof(struct elfhdr); elf->e_phentsize = sizeof(struct elf_phdr); elf->e_phnum = segs; - - return; } static void fill_elf_note_phdr(struct elf_phdr *phdr, int sz, loff_t offset) @@ -1471,7 +1469,6 @@ static void fill_elf_note_phdr(struct el phdr->p_memsz = 0; phdr->p_flags = 0; phdr->p_align = 0; - return; } static void fill_note(struct memelfnote *note, const char *name, int type, @@ -1481,7 +1478,6 @@ static void fill_note(struct memelfnote note->type = type; note->datasz = sz; note->data = data; - return; } /* _ Patches currently in -mm which might be from adobriyan@xxxxxxxxx are ramfs-support-o_tmpfile.patch elf-make-scope-of-pos-variable-smaller.patch elf-free-pt_interp-filename-asap.patch elf-delete-trailing-return-in-functions-returning-void.patch