aboutsummaryrefslogtreecommitdiffstats
path: root/arch/um
diff options
context:
space:
mode:
authorThomas Gleixner <tglx@linutronix.de>2011-02-06 17:45:31 -0500
committerThomas Gleixner <tglx@linutronix.de>2011-02-14 13:37:39 -0500
commit6ea96e7e4946f790330557e4b7c4c8a174c1c6d2 (patch)
treef1b77a2e66efffac89058e8cd0cc6defabd0ecbe /arch/um
parent795abaf1e4e188c4171e3cd3dbb11a9fcacaf505 (diff)
um: Remove stale irq_chip.end
irq_chip.end got obsolete with the remnoval of __do_IRQ(). Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Cc: Jeff Dike <jdike@addtoit.com> Cc: Peter Zijlstra <peterz@infradead.org> Cc: Andrew Morton <akpm@linux-foundation.org> LKML-Reference: <20110206224515.135703209@linutronix.de>
Diffstat (limited to 'arch/um')
-rw-r--r--arch/um/kernel/irq.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/arch/um/kernel/irq.c b/arch/um/kernel/irq.c
index 3f0ac9e0c966..c9167485431e 100644
--- a/arch/um/kernel/irq.c
+++ b/arch/um/kernel/irq.c
@@ -374,7 +374,6 @@ static struct irq_chip normal_irq_type = {
374 .disable = dummy, 374 .disable = dummy,
375 .enable = dummy, 375 .enable = dummy,
376 .ack = dummy, 376 .ack = dummy,
377 .end = dummy
378}; 377};
379 378
380static struct irq_chip SIGVTALRM_irq_type = { 379static struct irq_chip SIGVTALRM_irq_type = {
@@ -384,7 +383,6 @@ static struct irq_chip SIGVTALRM_irq_type = {
384 .disable = dummy, 383 .disable = dummy,
385 .enable = dummy, 384 .enable = dummy,
386 .ack = dummy, 385 .ack = dummy,
387 .end = dummy
388}; 386};
389 387
390void __init init_IRQ(void) 388void __init init_IRQ(void)