forked from luck/tmp_suning_uos_patched
[MIPS] Fix return type of gt64120_irq.
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
This commit is contained in:
parent
d864b96bb0
commit
65542070de
|
@ -20,7 +20,7 @@
|
||||||
* differently than other MIPS interrupts.
|
* differently than other MIPS interrupts.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
static void gt64120_irq(int irq, void *dev_id)
|
static irqreturn_t gt64120_irq(int irq, void *dev_id)
|
||||||
{
|
{
|
||||||
unsigned int irq_src, int_high_src, irq_src_mask, int_high_src_mask;
|
unsigned int irq_src, int_high_src, irq_src_mask, int_high_src_mask;
|
||||||
int handled = 0;
|
int handled = 0;
|
||||||
|
@ -43,6 +43,8 @@ static void gt64120_irq(int irq, void *dev_id)
|
||||||
|
|
||||||
GT_WRITE(GT_INTRCAUSE_OFS, 0);
|
GT_WRITE(GT_INTRCAUSE_OFS, 0);
|
||||||
GT_WRITE(GT_HINTRCAUSE_OFS, 0);
|
GT_WRITE(GT_HINTRCAUSE_OFS, 0);
|
||||||
|
|
||||||
|
return IRQ_HANDLED;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
Loading…
Reference in New Issue
Block a user