]> git.karo-electronics.de Git - karo-tx-linux.git/blob - lib/dump_stack.c
V4L/DVB (13997): gspca_ov519: differentiate ov7620 and ov7620ae and fix 640x480 on...
[karo-tx-linux.git] / lib / dump_stack.c
1 /*
2  * Provide a default dump_stack() function for architectures
3  * which don't implement their own.
4  */
5
6 #include <linux/kernel.h>
7 #include <linux/module.h>
8
9 void dump_stack(void)
10 {
11         printk(KERN_NOTICE
12                 "This architecture does not implement dump_stack()\n");
13 }
14
15 EXPORT_SYMBOL(dump_stack);