diff options
author | Paul Mundt <lethal@linux-sh.org> | 2010-05-20 20:46:27 +0900 |
---|---|---|
committer | Paul Mundt <lethal@linux-sh.org> | 2010-05-22 16:38:26 +0900 |
commit | d8252d6272682096835b4e1ef714cb1b593aa7fb (patch) | |
tree | d640efa00bc1316fbba815903b9aeda80d816d3c /arch/sh | |
parent | b2e25838c5f3508ccd6184be65aca228fc600540 (diff) | |
download | op-kernel-dev-d8252d6272682096835b4e1ef714cb1b593aa7fb.zip op-kernel-dev-d8252d6272682096835b4e1ef714cb1b593aa7fb.tar.gz |
sh: fix up the dwarf unwinder build for MODULES=n.
Presently the dwarf unwinder build blows up if modules are disabled,
fix it up.
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Diffstat (limited to 'arch/sh')
-rw-r--r-- | arch/sh/kernel/dwarf.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/arch/sh/kernel/dwarf.c b/arch/sh/kernel/dwarf.c index 5ec1d18..886d7d8 100644 --- a/arch/sh/kernel/dwarf.c +++ b/arch/sh/kernel/dwarf.c @@ -845,8 +845,10 @@ static int dwarf_parse_cie(void *entry, void *p, unsigned long len, rb_link_node(&cie->node, parent, rb_node); rb_insert_color(&cie->node, &cie_root); +#ifdef CONFIG_MODULES if (mod != NULL) list_add_tail(&cie->link, &mod->arch.cie_list); +#endif spin_unlock_irqrestore(&dwarf_cie_lock, flags); @@ -935,8 +937,10 @@ static int dwarf_parse_fde(void *entry, u32 entry_type, rb_link_node(&fde->node, parent, rb_node); rb_insert_color(&fde->node, &fde_root); +#ifdef CONFIG_MODULES if (mod != NULL) list_add_tail(&fde->link, &mod->arch.fde_list); +#endif spin_unlock_irqrestore(&dwarf_fde_lock, flags); |