Revision 257c2a02a8f668ea195bcb56eebbddc1af718e5e authored by Takashi Iwai on 27 January 2013, 09:20:22 UTC, committed by Takashi Iwai on 27 January 2013, 09:20:22 UTC
ASoC: Updates for v3.8-rc4

The usual set of driver updates, nothing too thrilling in here - one
core change for the regulator bypass mode which was just not doing the
right thing at all and a bunch of driver specifics.
2 parent s 0712eea + a8c136d
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/export.h>

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

EXPORT_SYMBOL(dump_stack);
back to top