On Wed, 25 Aug 2021 11:40:40 +0200, Geert Uytterhoeven wrote: > On ia64/allmodconfig: > > drivers/of/fdt.c:609:20: error: conflicting types for 'reserve_elfcorehdr'; have 'void(void)' > 609 | static void __init reserve_elfcorehdr(void) > | ^~~~~~~~~~~~~~~~~~ > arch/ia64/include/asm/meminit.h:43:12: note: previous declaration of 'reserve_elfcorehdr' with type 'int(u64 *, u64 *)' {aka 'int(long long unsigned int *, long long unsigned int *)'} > 43 | extern int reserve_elfcorehdr(u64 *start, u64 *end); > | ^~~~~~~~~~~~~~~~~~ > > Fix this by prefixing the FDT function name with "fdt_". > > Fixes: f7e7ce93aac13118 ("of: fdt: Add generic support for handling elf core headers property") > Reported-by: kernel test robot <lkp@xxxxxxxxx> > Signed-off-by: Geert Uytterhoeven <geert+renesas@xxxxxxxxx> > --- > This change was planned for v6. > Feel free to fold into the original. > --- > drivers/of/fdt.c | 6 +++--- > 1 file changed, 3 insertions(+), 3 deletions(-) > Applied, thanks!