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