M7350/kernel/lib/dump_stack.c

16 lines
290 B
C
Raw Normal View History

2024-09-09 08:52:07 +00:00
/*
* Provide a default dump_stack() function for architectures
* which don't implement their own.
*/
#include <linux/kernel.h>
#include <linux/export.h>
void dump_stack(void)
{
printk(KERN_NOTICE
"This architecture does not implement dump_stack()\n");
}
EXPORT_SYMBOL(dump_stack);