diff options
author | Paul Mundt <lethal@linux-sh.org> | 2013-01-14 18:07:36 +0900 |
---|---|---|
committer | Paul Mundt <lethal@linux-sh.org> | 2013-01-14 18:07:36 +0900 |
commit | 14eae6e9d455a7848a5e45ff193a14925478f6ab (patch) | |
tree | 7533099cb37202604dacd6d09c56ba3b51a5c7c2 /arch | |
parent | a246f581fceb2d6c83a74364f4a4c6263e6cdfe4 (diff) | |
download | op-kernel-dev-14eae6e9d455a7848a5e45ff193a14925478f6ab.zip op-kernel-dev-14eae6e9d455a7848a5e45ff193a14925478f6ab.tar.gz |
sh: Fix up stack debugging build.
Somewhere along the line the ebss label was taken out, resulting in pcrel
branch too far errors. Restore the label to get things building again.
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/sh/lib/mcount.S | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/sh/lib/mcount.S b/arch/sh/lib/mcount.S index 60164e6..52aa201 100644 --- a/arch/sh/lib/mcount.S +++ b/arch/sh/lib/mcount.S @@ -294,6 +294,8 @@ stack_panic: .align 2 .L_init_thread_union: .long init_thread_union +.L_ebss: + .long __bss_stop .Lpanic: .long panic .Lpanic_s: |