diff options
author | Ralf Baechle <ralf@linux-mips.org> | 2005-03-04 14:36:51 -0500 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2005-10-29 14:30:53 -0400 |
commit | 77c728c2240a1eb45f7d355f5d87ecc319cd55ce (patch) | |
tree | 5e8abf2eceba4beaaca4aefa875be96aecb649b4 /include/asm-mips/paccess.h | |
parent | 5eaf7a21be3f7f81573cf26541b8f9cc786fb67d (diff) |
Gcc 4.0 fixes.
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'include/asm-mips/paccess.h')
-rw-r--r-- | include/asm-mips/paccess.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/asm-mips/paccess.h b/include/asm-mips/paccess.h index 309bc3099f68..46f2d23d2697 100644 --- a/include/asm-mips/paccess.h +++ b/include/asm-mips/paccess.h | |||
@@ -52,7 +52,7 @@ struct __large_pstruct { unsigned long buf[100]; }; | |||
52 | }) | 52 | }) |
53 | 53 | ||
54 | #define __get_dbe_asm(insn) \ | 54 | #define __get_dbe_asm(insn) \ |
55 | ({ \ | 55 | { \ |
56 | __asm__ __volatile__( \ | 56 | __asm__ __volatile__( \ |
57 | "1:\t" insn "\t%1,%2\n\t" \ | 57 | "1:\t" insn "\t%1,%2\n\t" \ |
58 | "move\t%0,$0\n" \ | 58 | "move\t%0,$0\n" \ |
@@ -67,7 +67,7 @@ struct __large_pstruct { unsigned long buf[100]; }; | |||
67 | ".previous" \ | 67 | ".previous" \ |
68 | :"=r" (__gu_err), "=r" (__gu_val) \ | 68 | :"=r" (__gu_err), "=r" (__gu_val) \ |
69 | :"o" (__mp(__gu_addr)), "i" (-EFAULT)); \ | 69 | :"o" (__mp(__gu_addr)), "i" (-EFAULT)); \ |
70 | }) | 70 | } |
71 | 71 | ||
72 | extern void __get_dbe_unknown(void); | 72 | extern void __get_dbe_unknown(void); |
73 | 73 | ||
@@ -90,7 +90,7 @@ extern void __get_dbe_unknown(void); | |||
90 | }) | 90 | }) |
91 | 91 | ||
92 | #define __put_dbe_asm(insn) \ | 92 | #define __put_dbe_asm(insn) \ |
93 | ({ \ | 93 | { \ |
94 | __asm__ __volatile__( \ | 94 | __asm__ __volatile__( \ |
95 | "1:\t" insn "\t%1,%2\n\t" \ | 95 | "1:\t" insn "\t%1,%2\n\t" \ |
96 | "move\t%0,$0\n" \ | 96 | "move\t%0,$0\n" \ |
@@ -104,7 +104,7 @@ extern void __get_dbe_unknown(void); | |||
104 | ".previous" \ | 104 | ".previous" \ |
105 | : "=r" (__pu_err) \ | 105 | : "=r" (__pu_err) \ |
106 | : "r" (__pu_val), "o" (__mp(__pu_addr)), "i" (-EFAULT)); \ | 106 | : "r" (__pu_val), "o" (__mp(__pu_addr)), "i" (-EFAULT)); \ |
107 | }) | 107 | } |
108 | 108 | ||
109 | extern void __put_dbe_unknown(void); | 109 | extern void __put_dbe_unknown(void); |
110 | 110 | ||