Revision 75c3ebd86f9d06e3f3f2f80fbf0bb0d7ae13e249 authored by John Linn on 18 March 2011, 22:19:16 UTC, committed by John Linn on 18 March 2011, 22:20:56 UTC
This change appears to be backward compatible with peep9 also. This
was caused by DT 592979.

Without this change, the SRAM test does not pass. This change is
small as it only sets the SET_BLS bit in the set_opmode register.
1 parent 142d225
Raw File
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