diff options
author | Ralf Baechle <ralf@linux-mips.org> | 2007-10-11 18:46:15 -0400 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2007-10-11 18:46:15 -0400 |
commit | 21a151d8ca3aa74ee79f9791a9d4dc370d3e0636 (patch) | |
tree | 8556b3a32ded6a49225beb4a7aa4447cc87a0e00 /arch/mips/sibyte/sb1250/irq.c | |
parent | 49a89efbbbcc178a39555c43bd59a7593c429664 (diff) |
[MIPS] checkfiles: Fix "need space after that ','" errors.
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch/mips/sibyte/sb1250/irq.c')
-rw-r--r-- | arch/mips/sibyte/sb1250/irq.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/arch/mips/sibyte/sb1250/irq.c b/arch/mips/sibyte/sb1250/irq.c index 6a4cc84194a9..7659174819c6 100644 --- a/arch/mips/sibyte/sb1250/irq.c +++ b/arch/mips/sibyte/sb1250/irq.c | |||
@@ -259,7 +259,7 @@ int sb1250_steal_irq(int irq) | |||
259 | if (irq >= SB1250_NR_IRQS) | 259 | if (irq >= SB1250_NR_IRQS) |
260 | return -EINVAL; | 260 | return -EINVAL; |
261 | 261 | ||
262 | spin_lock_irqsave(&desc->lock,flags); | 262 | spin_lock_irqsave(&desc->lock, flags); |
263 | /* Don't allow sharing at all for these */ | 263 | /* Don't allow sharing at all for these */ |
264 | if (desc->action != NULL) | 264 | if (desc->action != NULL) |
265 | retval = -EBUSY; | 265 | retval = -EBUSY; |
@@ -267,7 +267,7 @@ int sb1250_steal_irq(int irq) | |||
267 | desc->action = &sb1250_dummy_action; | 267 | desc->action = &sb1250_dummy_action; |
268 | desc->depth = 0; | 268 | desc->depth = 0; |
269 | } | 269 | } |
270 | spin_unlock_irqrestore(&desc->lock,flags); | 270 | spin_unlock_irqrestore(&desc->lock, flags); |
271 | return 0; | 271 | return 0; |
272 | } | 272 | } |
273 | 273 | ||
@@ -381,8 +381,8 @@ void __init arch_init_irq(void) | |||
381 | 381 | ||
382 | #include <linux/delay.h> | 382 | #include <linux/delay.h> |
383 | 383 | ||
384 | #define duart_out(reg, val) csr_out32(val, IOADDR(A_DUART_CHANREG(kgdb_port,reg))) | 384 | #define duart_out(reg, val) csr_out32(val, IOADDR(A_DUART_CHANREG(kgdb_port, reg))) |
385 | #define duart_in(reg) csr_in32(IOADDR(A_DUART_CHANREG(kgdb_port,reg))) | 385 | #define duart_in(reg) csr_in32(IOADDR(A_DUART_CHANREG(kgdb_port, reg))) |
386 | 386 | ||
387 | static void sb1250_kgdb_interrupt(void) | 387 | static void sb1250_kgdb_interrupt(void) |
388 | { | 388 | { |