diff options
author | Ralf Baechle <ralf@linux-mips.org> | 2006-06-05 06:54:41 -0400 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2006-10-09 18:20:47 -0400 |
commit | 0118c3ca9e7518b06a10e9d7f4bd15957df45783 (patch) | |
tree | 1bdbcaec734df15635d12570c01cb63233e61fd6 | |
parent | 12a0a703b3f07e5b01c81fe4f5d2a221c9318f16 (diff) |
[MIPS] Malta: Fix build for non-MIPS32/64 configuration.
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
-rw-r--r-- | arch/mips/mips-boards/malta/malta_int.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/arch/mips/mips-boards/malta/malta_int.c b/arch/mips/mips-boards/malta/malta_int.c index ed221dc7f6ac..6244d0e2c7de 100644 --- a/arch/mips/mips-boards/malta/malta_int.c +++ b/arch/mips/mips-boards/malta/malta_int.c | |||
@@ -212,23 +212,23 @@ static inline unsigned int irq_ffs(unsigned int pending) | |||
212 | unsigned int a0 = 7; | 212 | unsigned int a0 = 7; |
213 | unsigned int t0; | 213 | unsigned int t0; |
214 | 214 | ||
215 | t0 = s0 & 0xf000; | 215 | t0 = pending & 0xf000; |
216 | t0 = t0 < 1; | 216 | t0 = t0 < 1; |
217 | t0 = t0 << 2; | 217 | t0 = t0 << 2; |
218 | a0 = a0 - t0; | 218 | a0 = a0 - t0; |
219 | s0 = s0 << t0; | 219 | pending = pending << t0; |
220 | 220 | ||
221 | t0 = s0 & 0xc000; | 221 | t0 = pending & 0xc000; |
222 | t0 = t0 < 1; | 222 | t0 = t0 < 1; |
223 | t0 = t0 << 1; | 223 | t0 = t0 << 1; |
224 | a0 = a0 - t0; | 224 | a0 = a0 - t0; |
225 | s0 = s0 << t0; | 225 | pending = pending << t0; |
226 | 226 | ||
227 | t0 = s0 & 0x8000; | 227 | t0 = pending & 0x8000; |
228 | t0 = t0 < 1; | 228 | t0 = t0 < 1; |
229 | //t0 = t0 << 2; | 229 | //t0 = t0 << 2; |
230 | a0 = a0 - t0; | 230 | a0 = a0 - t0; |
231 | //s0 = s0 << t0; | 231 | //pending = pending << t0; |
232 | 232 | ||
233 | return a0; | 233 | return a0; |
234 | #endif | 234 | #endif |