Commit d1ae0015 authored by Miles Bader's avatar Miles Bader Committed by Linus Torvalds

[PATCH] v850: Return value from no_action in irq.c

Signed-off-by: default avatarMiles Bader <miles@gnu.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent 8c0a5423
/* /*
* arch/v850/kernel/irq.c -- High-level interrupt handling * arch/v850/kernel/irq.c -- High-level interrupt handling
* *
* Copyright (C) 2001,02,03 NEC Electronics Corporation * Copyright (C) 2001,02,03,04 NEC Electronics Corporation
* Copyright (C) 2001,02,03 Miles Bader <miles@gnu.org> * Copyright (C) 2001,02,03,04 Miles Bader <miles@gnu.org>
* Copyright (C) 1994-2000 Ralf Baechle * Copyright (C) 1994-2000 Ralf Baechle
* Copyright (C) 1992 Linus Torvalds * Copyright (C) 1992 Linus Torvalds
* *
...@@ -40,7 +40,10 @@ irq_desc_t irq_desc[NR_IRQS] __cacheline_aligned = { ...@@ -40,7 +40,10 @@ irq_desc_t irq_desc[NR_IRQS] __cacheline_aligned = {
* Special irq handlers. * Special irq handlers.
*/ */
irqreturn_t no_action(int cpl, void *dev_id, struct pt_regs *regs) { } irqreturn_t no_action(int cpl, void *dev_id, struct pt_regs *regs)
{
return IRQ_NONE;
}
/* /*
* Generic no controller code * Generic no controller code
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment