sh: export return_address() symbol.
authorPaul Mundt <lethal@linux-sh.org>
Fri, 2 Apr 2010 07:02:33 +0000 (16:02 +0900)
committerPaul Mundt <lethal@linux-sh.org>
Fri, 2 Apr 2010 07:02:33 +0000 (16:02 +0900)
This is needed with some of the tracing code built as modules, so provide
the export.

Signed-off-by: Paul Mundt <lethal@linux-sh.org>
arch/sh/kernel/return_address.c

index df3ab58..cbf1dd5 100644 (file)
@@ -9,6 +9,7 @@
  * for more details.
  */
 #include <linux/kernel.h>
+#include <linux/module.h>
 #include <asm/dwarf.h>
 
 #ifdef CONFIG_DWARF_UNWINDER
@@ -52,3 +53,5 @@ void *return_address(unsigned int depth)
 }
 
 #endif
+
+EXPORT_SYMBOL_GPL(return_address);