diff options
author | Ralf Baechle <ralf@linux-mips.org> | 2007-07-10 03:59:17 -0400 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2007-07-10 12:33:05 -0400 |
commit | 35c700c0955c43e168c45d375f90a0670be8f054 (patch) | |
tree | cb1d4afaed22c61b5cca65c233816cae948adebf /include/asm-mips | |
parent | bf74b964775009071cf12f9d59d4dd5e388fbe0b (diff) |
[MIPS] Non-FPAFF: Fix warning.
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'include/asm-mips')
-rw-r--r-- | include/asm-mips/system.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/asm-mips/system.h b/include/asm-mips/system.h index be64fc55562a..46bdb3f566f9 100644 --- a/include/asm-mips/system.h +++ b/include/asm-mips/system.h | |||
@@ -56,7 +56,7 @@ do { \ | |||
56 | } while(0) | 56 | } while(0) |
57 | 57 | ||
58 | #else | 58 | #else |
59 | #define __mips_mt_fpaff_switch_to(prev) do { (prev); } while (0) | 59 | #define __mips_mt_fpaff_switch_to(prev) do { (void) (prev); } while (0) |
60 | #endif | 60 | #endif |
61 | 61 | ||
62 | #define switch_to(prev,next,last) \ | 62 | #define switch_to(prev,next,last) \ |