diff options
author | Ralf Baechle <ralf@linux-mips.org> | 2007-10-11 18:46:03 -0400 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2007-10-11 18:46:03 -0400 |
commit | ec70f65e3b5309e7ac8b5508ff5657050c92b913 (patch) | |
tree | 81c89280304362fddfc838e49a5e24ce66b630df /arch | |
parent | b47bd961e298aff8144a98bff38cf4de4a2834b9 (diff) |
[MIPS] Kill useless volatile keyword
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/mips/kernel/traps.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/mips/kernel/traps.c b/arch/mips/kernel/traps.c index 6379003f9d8d..3d033e1cd4f0 100644 --- a/arch/mips/kernel/traps.c +++ b/arch/mips/kernel/traps.c | |||
@@ -1075,8 +1075,8 @@ void *set_except_vector(int n, void *addr) | |||
1075 | 1075 | ||
1076 | exception_handlers[n] = handler; | 1076 | exception_handlers[n] = handler; |
1077 | if (n == 0 && cpu_has_divec) { | 1077 | if (n == 0 && cpu_has_divec) { |
1078 | *(volatile u32 *)(ebase + 0x200) = 0x08000000 | | 1078 | *(u32 *)(ebase + 0x200) = 0x08000000 | |
1079 | (0x03ffffff & (handler >> 2)); | 1079 | (0x03ffffff & (handler >> 2)); |
1080 | flush_icache_range(ebase + 0x200, ebase + 0x204); | 1080 | flush_icache_range(ebase + 0x200, ebase + 0x204); |
1081 | } | 1081 | } |
1082 | return (void *)old_handler; | 1082 | return (void *)old_handler; |