diff options
author | Paul Mundt <lethal@linux-sh.org> | 2010-04-02 03:02:33 -0400 |
---|---|---|
committer | Paul Mundt <lethal@linux-sh.org> | 2010-04-02 03:02:33 -0400 |
commit | 5dd6ef5050c5012267e2b84f3d82ba85cdb5ca32 (patch) | |
tree | 9bb45df20d84d894a45b6bbbc2b2454727fc3122 /arch/sh | |
parent | 4bea3418c737891894b9d3d3e9f8bbd67d66fa38 (diff) |
sh: export return_address() symbol.
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>
Diffstat (limited to 'arch/sh')
-rw-r--r-- | arch/sh/kernel/return_address.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/arch/sh/kernel/return_address.c b/arch/sh/kernel/return_address.c index df3ab5811074..cbf1dd5372b2 100644 --- a/arch/sh/kernel/return_address.c +++ b/arch/sh/kernel/return_address.c | |||
@@ -9,6 +9,7 @@ | |||
9 | * for more details. | 9 | * for more details. |
10 | */ | 10 | */ |
11 | #include <linux/kernel.h> | 11 | #include <linux/kernel.h> |
12 | #include <linux/module.h> | ||
12 | #include <asm/dwarf.h> | 13 | #include <asm/dwarf.h> |
13 | 14 | ||
14 | #ifdef CONFIG_DWARF_UNWINDER | 15 | #ifdef CONFIG_DWARF_UNWINDER |
@@ -52,3 +53,5 @@ void *return_address(unsigned int depth) | |||
52 | } | 53 | } |
53 | 54 | ||
54 | #endif | 55 | #endif |
56 | |||
57 | EXPORT_SYMBOL_GPL(return_address); | ||