Commit abd6b373 authored by Miles Bader's avatar Miles Bader Committed by Arnaldo Carvalho de Melo

[PATCH] Update irq.c on v850 to use irqreturn_t

parent 1f8870ed
......@@ -35,7 +35,7 @@ irq_desc_t irq_desc[NR_IRQS] __cacheline_aligned =
* Special irq handlers.
*/
void no_action(int cpl, void *dev_id, struct pt_regs *regs) { }
irqreturn_t no_action(int cpl, void *dev_id, struct pt_regs *regs) { }
/*
* Generic no controller code
......@@ -352,7 +352,7 @@ unsigned int handle_irq (int irq, struct pt_regs *regs)
*/
int request_irq(unsigned int irq,
void (*handler)(int, void *, struct pt_regs *),
irqreturn_t (*handler)(int, void *, struct pt_regs *),
unsigned long irqflags,
const char * devname,
void *dev_id)
......
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