fiq_debugger: fix code error in fiq_debugger_arm64.c
authorHuibin Hong <huibin.hong@rock-chips.com>
Mon, 13 Jun 2016 08:41:07 +0000 (16:41 +0800)
committerHuang, Tao <huangtao@rock-chips.com>
Tue, 21 Jun 2016 09:40:31 +0000 (17:40 +0800)
Change-Id: I6163602bf0190db85714c68086f61c89b7629687
Signed-off-by: Huibin Hong <huibin.hong@rock-chips.com>
drivers/staging/android/fiq_debugger/fiq_debugger_arm64.c

index 99c6584fcfa58f6dfe3c62ca54f714f520e10053..97246bcbcd62548ebd60f6bc93a2ce66f83fd40b 100644 (file)
@@ -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);
        }
 }