xref: /rk3399_rockchip-uboot/include/stacktrace.h (revision 5158c8f25bf56eacc5a32d79da258fc63f26a3ef)
1 /* SPDX-License-Identifier:     GPL-2.0+ */
2 /*
3  * (C) Copyright 2019 Rockchip Electronics Co., Ltd
4  */
5 
6 #ifndef _STACKTRACE_
7 #define _STACKTRACE_
8 
9 #include <common.h>
10 
11 /* User should never call it */
12 void dump_core_stack(struct pt_regs *regs);
13 
14 /* User API */
15 void dump_stack(void);
16 
17 #endif
18