https://github.com/torvalds/linux
Revision 408d3258f99458f2dabcb1aa33918250e4864f00 authored by Ralf Baechle on 30 October 2006, 14:19:37 UTC, committed by Ralf Baechle on 30 October 2006, 21:41:29 UTC
I wonder if the original contributor still cares ...

Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
1 parent 6ceb6d3
Raw File
Tip revision: 408d3258f99458f2dabcb1aa33918250e4864f00 authored by Ralf Baechle on 30 October 2006, 14:19:37 UTC
[MIPS] EMMA 2 / Markeins: Fix build wreckage due to genirq wreckage.
Tip revision: 408d325
dump_stack.c
/*
 * Provide a default dump_stack() function for architectures
 * which don't implement their own.
 */

#include <linux/kernel.h>
#include <linux/module.h>

void dump_stack(void)
{
	printk(KERN_NOTICE
		"This architecture does not implement dump_stack()\n");
}

EXPORT_SYMBOL(dump_stack);
back to top