diff options
author | Paul Mundt <lethal@linux-sh.org> | 2009-08-31 06:47:06 +0200 |
---|---|---|
committer | Paul Mundt <lethal@linux-sh.org> | 2009-08-31 06:47:06 +0200 |
commit | 2f6dafc5fcbf3fddce345c47da1f277a156fe22a (patch) | |
tree | 2787f531d1189d8dfaae7f3900f0491fade49e1d /arch/sh/include/asm/dwarf.h | |
parent | sh: Only shout about fixing up unexpected unaligned accesses (diff) | |
download | linux-2f6dafc5fcbf3fddce345c47da1f277a156fe22a.tar.xz linux-2f6dafc5fcbf3fddce345c47da1f277a156fe22a.zip |
sh: unwinder: Fix up uninitialized variable warnings on sh2a build.
A couple of these popped up on the sh2a build, causing build failures.
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Diffstat (limited to 'arch/sh/include/asm/dwarf.h')
-rw-r--r-- | arch/sh/include/asm/dwarf.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/sh/include/asm/dwarf.h b/arch/sh/include/asm/dwarf.h index c367ed3373c5..ced6795891a6 100644 --- a/arch/sh/include/asm/dwarf.h +++ b/arch/sh/include/asm/dwarf.h @@ -200,7 +200,7 @@ */ static __always_inline unsigned long dwarf_read_arch_reg(unsigned int reg) { - unsigned long value; + unsigned long value = 0; switch (reg) { case 14: |