diff options
Diffstat (limited to 'arch/arm/kernel/unwind.c')
| -rw-r--r-- | arch/arm/kernel/unwind.c | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/kernel/unwind.c b/arch/arm/kernel/unwind.c index 2a161765f6d..d2cb0b3c987 100644 --- a/arch/arm/kernel/unwind.c +++ b/arch/arm/kernel/unwind.c @@ -279,7 +279,7 @@ int unwind_frame(struct stackframe *frame)  	/* only go to a higher address on the stack */  	low = frame->sp; -	high = ALIGN(low, THREAD_SIZE) + THREAD_SIZE; +	high = ALIGN(low, THREAD_SIZE);  	pr_debug("%s(pc = %08lx lr = %08lx sp = %08lx)\n", __func__,  		 frame->pc, frame->lr, frame->sp);  |