frv: Remove stale irq_chip.end

irq_chip.end got obsolete with the removal of __do_IRQ().

irq-mb93093.c even lacks an implementation, but nobody noticed that
it's broken since commit 88d6e1 in 2006.

Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Cc: David Howells <dhowells@redhat.com>
LKML-Reference: <20110206192106.011224503@linutronix.de>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>

-7
-1
arch/frv/kernel/irq-mb93093.c
··· 73 73 .mask = frv_fpga_mask, 74 74 .mask_ack = frv_fpga_mask_ack, 75 75 .unmask = frv_fpga_unmask, 76 - .end = frv_fpga_end, 77 76 }; 78 77 79 78 /*
-6
arch/frv/kernel/irq.c
··· 118 118 __clr_MASK(irqlevel); 119 119 } 120 120 121 - static void frv_cpupic_end(unsigned int irqlevel) 122 - { 123 - __clr_MASK(irqlevel); 124 - } 125 - 126 121 static struct irq_chip frv_cpu_pic = { 127 122 .name = "cpu", 128 123 .ack = frv_cpupic_ack, 129 124 .mask = frv_cpupic_mask, 130 125 .mask_ack = frv_cpupic_mask_ack, 131 126 .unmask = frv_cpupic_unmask, 132 - .end = frv_cpupic_end, 133 127 }; 134 128 135 129 /*