diff options
author | Dmitri Vorobiev <dmitri.vorobiev@gmail.com> | 2008-01-24 11:52:52 -0500 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2008-01-29 05:15:04 -0500 |
commit | ae9cef0b7949c0d528962127f2bccf7c753949df (patch) | |
tree | 94e2f4f3d7abe6da89a305257a1cce52b8f5d2b0 /arch | |
parent | 52b3fc04ba3289ffa42fac84bfa35ef2613fc917 (diff) |
[MIPS] Malta: Use C89 style for comments
Remove comments in C99 style and make checkpatch.pl happy.
No functional changes introduced.
Signed-off-by: Dmitri Vorobiev <dmitri.vorobiev@gmail.com>
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/mips/mips-boards/malta/malta_int.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/mips/mips-boards/malta/malta_int.c b/arch/mips/mips-boards/malta/malta_int.c index 2473a77cea60..92e6e2d7b7f3 100644 --- a/arch/mips/mips-boards/malta/malta_int.c +++ b/arch/mips/mips-boards/malta/malta_int.c | |||
@@ -214,9 +214,9 @@ static inline unsigned int irq_ffs(unsigned int pending) | |||
214 | 214 | ||
215 | t0 = pending & 0x8000; | 215 | t0 = pending & 0x8000; |
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 | //pending = pending << t0; | 219 | /* pending = pending << t0; */ |
220 | 220 | ||
221 | return a0; | 221 | return a0; |
222 | #endif | 222 | #endif |