diff options
| author | Ralf Baechle <ralf@linux-mips.org> | 2011-07-28 08:31:48 -0400 |
|---|---|---|
| committer | Ralf Baechle <ralf@linux-mips.org> | 2011-09-21 11:52:44 -0400 |
| commit | a705dc7cf4edbf110af19ea55cb5e5d0465adcf4 (patch) | |
| tree | b60520eed0a957a6f4b3be5a37ec61618e41abce | |
| parent | 1f717929e987fc55bb6be02df994945f8edbd46c (diff) | |
MIPS: MSP71xx: Fix build error.
CC arch/mips/pmc-sierra/msp71xx/msp_irq.o
/home/ralf/src/linux/linux-mips/arch/mips/pmc-sierra/msp71xx/msp_irq.c:112:2: error: request for member ‘flags’ in something not a structure or union
/home/ralf/src/linux/linux-mips/arch/mips/pmc-sierra/msp71xx/msp_irq.c:118:2: error: request for member ‘flags’ in something not a structure or union
make[4]: *** [arch/mips/pmc-sierra/msp71xx/msp_irq.o] Error 1
caused by 57336bc1056798d89714b7fb1b1d197e6bda6819 [MIPS: Mark cascade and
low level interrupts IRQF_NO_THREAD].
Commas to separate struct initializers generally are considered useful to
enhance the compilation experience of the user.
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
| -rw-r--r-- | arch/mips/pmc-sierra/msp71xx/msp_irq.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/mips/pmc-sierra/msp71xx/msp_irq.c b/arch/mips/pmc-sierra/msp71xx/msp_irq.c index 42a4c04e21d5..d3c3d81757a5 100644 --- a/arch/mips/pmc-sierra/msp71xx/msp_irq.c +++ b/arch/mips/pmc-sierra/msp71xx/msp_irq.c | |||
| @@ -108,13 +108,13 @@ asmlinkage void plat_irq_dispatch(struct pt_regs *regs) | |||
| 108 | 108 | ||
| 109 | static struct irqaction cic_cascade_msp = { | 109 | static struct irqaction cic_cascade_msp = { |
| 110 | .handler = no_action, | 110 | .handler = no_action, |
| 111 | .name = "MSP CIC cascade" | 111 | .name = "MSP CIC cascade", |
| 112 | .flags = IRQF_NO_THREAD, | 112 | .flags = IRQF_NO_THREAD, |
| 113 | }; | 113 | }; |
| 114 | 114 | ||
| 115 | static struct irqaction per_cascade_msp = { | 115 | static struct irqaction per_cascade_msp = { |
| 116 | .handler = no_action, | 116 | .handler = no_action, |
| 117 | .name = "MSP PER cascade" | 117 | .name = "MSP PER cascade", |
| 118 | .flags = IRQF_NO_THREAD, | 118 | .flags = IRQF_NO_THREAD, |
| 119 | }; | 119 | }; |
| 120 | 120 | ||
