[PATCH] m32r: remove abort()

From: Sudip Mukherjee
Date: Thu Jan 25 2018 - 15:32:50 EST


Commit 7c2c11b208be ("arch: define weak abort()") has introduced a weak
abort() which is common for all arch. And, so we will not need arch
specific abort which has the same code as the weak abort().
Remove the abort() for m32r.

Signed-off-by: Sudip Mukherjee <sudipm.mukherjee@xxxxxxxxx>
---

Has been build tested with all possible m32 configuration.

All build pipelines at:
https://gitlab.com/sudipm/linux-next/pipelines/16586880

arch/m32r/kernel/traps.c | 8 --------
1 file changed, 8 deletions(-)

diff --git a/arch/m32r/kernel/traps.c b/arch/m32r/kernel/traps.c
index b88a8dd..a6f300a 100644
--- a/arch/m32r/kernel/traps.c
+++ b/arch/m32r/kernel/traps.c
@@ -115,14 +115,6 @@ static void set_eit_vector_entries(void)
_flush_cache_copyback_all();
}

-void abort(void)
-{
- BUG();
-
- /* if that doesn't kill us, halt */
- panic("Oops failed to kill thread");
-}
-
void __init trap_init(void)
{
set_eit_vector_entries();
--
2.7.4