The patch titled Subject: frv: fix build failure has been added to the -mm tree. Its filename is frv-fix-build-failure.patch This patch should soon appear at http://ozlabs.org/~akpm/mmots/broken-out/frv-fix-build-failure.patch and later at http://ozlabs.org/~akpm/mmotm/broken-out/frv-fix-build-failure.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/SubmitChecklist when testing your code *** The -mm tree is included into linux-next and is updated there every 3-4 working days ------------------------------------------------------ From: Sudip Mukherjee <sudipm.mukherjee@xxxxxxxxx> Subject: frv: fix build failure The frv defconfig build is failing with the error: lib/mpi/mpih-div.o: In function `mpihelp_divrem': mpih-div.c:(.text+0x30c): undefined reference to `abort' The function 'abort' was never defined for the frv architecture. Create 'abort' as is done in other arch like 'arm' and 'unicore32'. Link: http://lkml.kernel.org/r/1511302233-5008-1-git-send-email-sudipm.mukherjee@xxxxxxxxx Signed-off-by: Sudip Mukherjee <sudipm.mukherjee@xxxxxxxxx> Cc: David Howells <dhowells@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- arch/frv/kernel/traps.c | 9 +++++++++ 1 file changed, 9 insertions(+) diff -puN arch/frv/kernel/traps.c~frv-fix-build-failure arch/frv/kernel/traps.c --- a/arch/frv/kernel/traps.c~frv-fix-build-failure +++ a/arch/frv/kernel/traps.c @@ -633,6 +633,15 @@ void show_backtrace(struct pt_regs *fram } /* end show_backtrace() */ +void abort(void) +{ + BUG(); + + /* if that doesn't kill us, halt */ + panic("Oops failed to kill thread"); +} +EXPORT_SYMBOL(abort); + /*****************************************************************************/ /* * initialise traps _ Patches currently in -mm which might be from sudipm.mukherjee@xxxxxxxxx are frv-fix-build-failure.patch -- To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html