From 7b42693fe15f218aac8d6b7b138bc133fccc47e0 Mon Sep 17 00:00:00 2001 From: Huibin Hong Date: Mon, 13 Jun 2016 16:41:07 +0800 Subject: [PATCH] fiq_debugger: fix code error in fiq_debugger_arm64.c Change-Id: I6163602bf0190db85714c68086f61c89b7629687 Signed-off-by: Huibin Hong --- drivers/staging/android/fiq_debugger/fiq_debugger_arm64.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/staging/android/fiq_debugger/fiq_debugger_arm64.c b/drivers/staging/android/fiq_debugger/fiq_debugger_arm64.c index 99c6584fcfa5..97246bcbcd62 100644 --- a/drivers/staging/android/fiq_debugger/fiq_debugger_arm64.c +++ b/drivers/staging/android/fiq_debugger/fiq_debugger_arm64.c @@ -197,6 +197,6 @@ void fiq_debugger_dump_stacktrace(struct fiq_debugger_output *output, frame.sp = regs->sp; frame.pc = regs->pc; output->printf(output, "\n"); - walk_stackframe(&frame, report_trace, &sts); + walk_stackframe(current, &frame, report_trace, &sts); } } -- 2.34.1