Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit c17df796 authored by Zong Li's avatar Zong Li Committed by Greentime Hu
Browse files

nds32: Fix empty call trace



The compiler predefined macro 'NDS32_ABI_2' had been removed, it should
use the '__NDS32_ABI_2' here.

Signed-off-by: default avatarZong Li <zong@andestech.com>
Acked-by: default avatarGreentime Hu <greentime@andestech.com>
Signed-off-by: default avatarGreentime Hu <greentime@andestech.com>
parent 1944a508
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -137,7 +137,7 @@ static void __dump(struct task_struct *tsk, unsigned long *base_reg)
		       !((unsigned long)base_reg & 0x3) &&
		       ((unsigned long)base_reg >= TASK_SIZE)) {
			unsigned long next_fp;
#if !defined(NDS32_ABI_2)
#if !defined(__NDS32_ABI_2)
			ret_addr = base_reg[0];
			next_fp = base_reg[1];
#else