diff options
author | Paul Mundt <lethal@linux-sh.org> | 2009-10-13 13:32:19 +0900 |
---|---|---|
committer | Paul Mundt <lethal@linux-sh.org> | 2009-10-13 13:32:19 +0900 |
commit | 5a3abba77dc0eb0b00332c21899123cdfa3b19e5 (patch) | |
tree | cb0b52bcb90f5c680faba380a0832203bdad2fed /arch/sh/include/asm | |
parent | ac4fac8cb24ab209ae373a3e3e9995dff7d0c394 (diff) | |
download | linux-3.10-5a3abba77dc0eb0b00332c21899123cdfa3b19e5.tar.gz linux-3.10-5a3abba77dc0eb0b00332c21899123cdfa3b19e5.tar.bz2 linux-3.10-5a3abba77dc0eb0b00332c21899123cdfa3b19e5.zip |
sh: Tidy up the dwarf module helpers.
This enables us to build the dwarf unwinder both with modules enabled and
disabled in addition to reducing code size in the latter case. The
helpers are also consolidated, and modified to resemble the BUG module
helpers.
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Diffstat (limited to 'arch/sh/include/asm')
-rw-r--r-- | arch/sh/include/asm/dwarf.h | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/arch/sh/include/asm/dwarf.h b/arch/sh/include/asm/dwarf.h index d985148af19..bdccbbfdc0b 100644 --- a/arch/sh/include/asm/dwarf.h +++ b/arch/sh/include/asm/dwarf.h @@ -198,6 +198,7 @@ #include <linux/compiler.h> #include <linux/bug.h> #include <linux/list.h> +#include <linux/module.h> /* * Read either the frame pointer (r14) or the stack pointer (r15). @@ -382,8 +383,10 @@ static inline unsigned int DW_CFA_operand(unsigned long insn) extern struct dwarf_frame *dwarf_unwind_stack(unsigned long, struct dwarf_frame *); extern void dwarf_free_frame(struct dwarf_frame *); -extern int dwarf_parse_section(char *, char *, struct module *); -extern void dwarf_module_unload(struct module *); + +extern int module_dwarf_finalize(const Elf_Ehdr *, const Elf_Shdr *, + struct module *); +extern void module_dwarf_cleanup(struct module *); #endif /* !__ASSEMBLY__ */ @@ -412,6 +415,10 @@ extern void dwarf_module_unload(struct module *); static inline void dwarf_unwinder_init(void) { } + +#define module_dwarf_finalize(hdr, sechdrs, me) (0) +#define module_dwarf_cleanup(mod) do { } while (0) + #endif #endif /* CONFIG_DWARF_UNWINDER */ |