diff options
| author | Paul Mundt <lethal@linux-sh.org> | 2007-11-23 14:02:20 +0900 |
|---|---|---|
| committer | Paul Mundt <lethal@linux-sh.org> | 2008-01-28 13:18:56 +0900 |
| commit | b000659b1c07f91f0c73bf94bb8922fa740c0ef0 (patch) | |
| tree | 95f0b6d6b6eae083eb0441ab7f24a99e476fcbab /include | |
| parent | sh: Build fixes for lib32 clear_page. (diff) | |
| download | linux-b000659b1c07f91f0c73bf94bb8922fa740c0ef0.tar.gz linux-b000659b1c07f91f0c73bf94bb8922fa740c0ef0.zip | |
sh: Fix up bug trap handler build for sh32.
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Diffstat (limited to 'include')
| -rw-r--r-- | include/asm-sh/system.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/asm-sh/system.h b/include/asm-sh/system.h index 6b02dfd587ea..8b01fc4a56af 100644 --- a/include/asm-sh/system.h +++ b/include/asm-sh/system.h @@ -194,7 +194,8 @@ asmlinkage void name##_trap_handler(unsigned long r4, unsigned long r5, \ #define TRAP_HANDLER_DECL \ struct pt_regs *regs = RELOC_HIDE(&__regs, 0); \ - unsigned int vec = regs->tra; + unsigned int vec = regs->tra; \ + (void)vec; #else #define BUILD_TRAP_HANDLER(name) \ asmlinkage void name##_trap_handler(unsigned int vec, struct pt_regs *regs) |
