xref: /OK3568_Linux_fs/u-boot/include/stacktrace.h (revision 4882a59341e53eb6f0b4789bf948001014eff981)
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