[ARM] 5298/1: Drop desc_handle_irq()
desc_handle_irq() was declared as obsolete since long ago. Replace it with generic_handle_irq() Signed-off-by: Dmitry Baryshkov <dbaryshkov@gmail.com> Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
This commit is contained in:

committed by
Russell King

parent
27c4cae281
commit
d8aa0251f1
@@ -86,7 +86,6 @@ static void fpga_mask_ack_irq(unsigned int irq)
|
||||
|
||||
void innovator_fpga_IRQ_demux(unsigned int irq, struct irq_desc *desc)
|
||||
{
|
||||
struct irq_desc *d;
|
||||
u32 stat;
|
||||
int fpga_irq;
|
||||
|
||||
@@ -99,8 +98,7 @@ void innovator_fpga_IRQ_demux(unsigned int irq, struct irq_desc *desc)
|
||||
(fpga_irq < OMAP_FPGA_IRQ_END) && stat;
|
||||
fpga_irq++, stat >>= 1) {
|
||||
if (stat & 1) {
|
||||
d = irq_desc + fpga_irq;
|
||||
desc_handle_irq(fpga_irq, d);
|
||||
generic_handle_irq(fpga_irq);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user