[ARM] Remove compatibility layer for ARM irqs
set_irq_chipdata -> set_irq_chip_data get_irq_chipdata -> get_irq_chip_data do_level_IRQ -> handle_level_irq do_edge_IRQ -> handle_edge_irq do_simple_IRQ -> handle_simple_irq irqdesc -> irq_desc irqchip -> irq_chip Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
这个提交包含在:
@@ -29,12 +29,12 @@
|
||||
* is rather unfortunate.
|
||||
*/
|
||||
static void
|
||||
neponset_irq_handler(unsigned int irq, struct irqdesc *desc)
|
||||
neponset_irq_handler(unsigned int irq, struct irq_desc *desc)
|
||||
{
|
||||
unsigned int irr;
|
||||
|
||||
while (1) {
|
||||
struct irqdesc *d;
|
||||
struct irq_desc *d;
|
||||
|
||||
/*
|
||||
* Acknowledge the parent IRQ.
|
||||
@@ -168,9 +168,9 @@ static int neponset_probe(struct platform_device *dev)
|
||||
* Setup other Neponset IRQs. SA1111 will be done by the
|
||||
* generic SA1111 code.
|
||||
*/
|
||||
set_irq_handler(IRQ_NEPONSET_SMC9196, do_simple_IRQ);
|
||||
set_irq_handler(IRQ_NEPONSET_SMC9196, handle_simple_irq);
|
||||
set_irq_flags(IRQ_NEPONSET_SMC9196, IRQF_VALID | IRQF_PROBE);
|
||||
set_irq_handler(IRQ_NEPONSET_USAR, do_simple_IRQ);
|
||||
set_irq_handler(IRQ_NEPONSET_USAR, handle_simple_irq);
|
||||
set_irq_flags(IRQ_NEPONSET_USAR, IRQF_VALID | IRQF_PROBE);
|
||||
|
||||
/*
|
||||
|
在新工单中引用
屏蔽一个用户