diff options
Diffstat (limited to 'arch/mips/loongson/lemote-2f/irq.c')
| -rw-r--r-- | arch/mips/loongson/lemote-2f/irq.c | 3 | 
1 files changed, 2 insertions, 1 deletions
diff --git a/arch/mips/loongson/lemote-2f/irq.c b/arch/mips/loongson/lemote-2f/irq.c index 081db102bb9..14b081841b6 100644 --- a/arch/mips/loongson/lemote-2f/irq.c +++ b/arch/mips/loongson/lemote-2f/irq.c @@ -96,12 +96,13 @@ static irqreturn_t ip6_action(int cpl, void *dev_id)  struct irqaction ip6_irqaction = {  	.handler = ip6_action,  	.name = "cascade", -	.flags = IRQF_SHARED, +	.flags = IRQF_SHARED | IRQF_NO_THREAD,  };  struct irqaction cascade_irqaction = {  	.handler = no_action,  	.name = "cascade", +	.flags = IRQF_NO_THREAD,  };  void __init mach_init_irq(void)  |