]> Gitweb @ Texas Instruments - Open Source Git Repositories - git.TI.com/gitweb - android-sdk/kernel-video.git/blob - lib/dump_stack.c
Merge branch 'p-ti-android-3.8.y-video'
[android-sdk/kernel-video.git] / lib / dump_stack.c
1 /*
2  * Provide a default dump_stack() function for architectures
3  * which don't implement their own.
4  */
6 #include <linux/kernel.h>
7 #include <linux/export.h>
9 void dump_stack(void)
10 {
11         printk(KERN_NOTICE
12                 "This architecture does not implement dump_stack()\n");
13 }
15 EXPORT_SYMBOL(dump_stack);