diff options
author | Thomas Gleixner <tglx@linutronix.de> | 2011-02-06 14:36:28 -0500 |
---|---|---|
committer | Michal Simek <monstr@monstr.eu> | 2011-03-09 02:09:59 -0500 |
commit | 6c3564d3f6a12b835ca95630927503a6ace94762 (patch) | |
tree | e16b6c7f8d75be7a89f9eabd905c69b52637a27e /arch | |
parent | 2cfedb97d6b3001d58c785839a8bc402374fe9f8 (diff) |
microblaze: Remove stale irq_chip.end
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>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/microblaze/kernel/intc.c | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/arch/microblaze/kernel/intc.c b/arch/microblaze/kernel/intc.c index d61ea33aff7c..bff99d1b749a 100644 --- a/arch/microblaze/kernel/intc.c +++ b/arch/microblaze/kernel/intc.c | |||
@@ -74,25 +74,12 @@ static void intc_mask_ack(unsigned int irq) | |||
74 | out_be32(INTC_BASE + IAR, mask); | 74 | out_be32(INTC_BASE + IAR, mask); |
75 | } | 75 | } |
76 | 76 | ||
77 | static void intc_end(unsigned int irq) | ||
78 | { | ||
79 | unsigned long mask = 1 << irq; | ||
80 | pr_debug("end: %d\n", irq); | ||
81 | if (!(irq_desc[irq].status & (IRQ_DISABLED | IRQ_INPROGRESS))) { | ||
82 | out_be32(INTC_BASE + SIE, mask); | ||
83 | /* ack level sensitive intr */ | ||
84 | if (irq_desc[irq].status & IRQ_LEVEL) | ||
85 | out_be32(INTC_BASE + IAR, mask); | ||
86 | } | ||
87 | } | ||
88 | |||
89 | static struct irq_chip intc_dev = { | 77 | static struct irq_chip intc_dev = { |
90 | .name = "Xilinx INTC", | 78 | .name = "Xilinx INTC", |
91 | .unmask = intc_enable_or_unmask, | 79 | .unmask = intc_enable_or_unmask, |
92 | .mask = intc_disable_or_mask, | 80 | .mask = intc_disable_or_mask, |
93 | .ack = intc_ack, | 81 | .ack = intc_ack, |
94 | .mask_ack = intc_mask_ack, | 82 | .mask_ack = intc_mask_ack, |
95 | .end = intc_end, | ||
96 | }; | 83 | }; |
97 | 84 | ||
98 | unsigned int get_irq(struct pt_regs *regs) | 85 | unsigned int get_irq(struct pt_regs *regs) |