Skip to content

Commit

Permalink
microblaze: Remove stale irq_chip.end
Browse files Browse the repository at this point in the history
irq_chip.end got obsolete with the removal of __do_IRQ().

Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Cc: Peter Zijlstra <peterz@infradead.org>
Tested-by: Michal Simek <monstr@monstr.eu>
LKML-Reference: <20110203004210.240154507@linutronix.de>
  • Loading branch information
Thomas Gleixner authored and Michal Simek committed Mar 9, 2011
1 parent 2cfedb9 commit 6c3564d
Showing 1 changed file with 0 additions and 13 deletions.
13 changes: 0 additions & 13 deletions arch/microblaze/kernel/intc.c
Original file line number Diff line number Diff line change
Expand Up @@ -74,25 +74,12 @@ static void intc_mask_ack(unsigned int irq)
out_be32(INTC_BASE + IAR, mask);
}

static void intc_end(unsigned int irq)
{
unsigned long mask = 1 << irq;
pr_debug("end: %d\n", irq);
if (!(irq_desc[irq].status & (IRQ_DISABLED | IRQ_INPROGRESS))) {
out_be32(INTC_BASE + SIE, mask);
/* ack level sensitive intr */
if (irq_desc[irq].status & IRQ_LEVEL)
out_be32(INTC_BASE + IAR, mask);
}
}

static struct irq_chip intc_dev = {
.name = "Xilinx INTC",
.unmask = intc_enable_or_unmask,
.mask = intc_disable_or_mask,
.ack = intc_ack,
.mask_ack = intc_mask_ack,
.end = intc_end,
};

unsigned int get_irq(struct pt_regs *regs)
Expand Down

0 comments on commit 6c3564d

Please sign in to comment.