arm: Reorder irq_set_ function calls
Reorder irq_set_chip() irq_set_chip_data() irq_set_handler() to irq_set_chip() irq_set_handler() irq_set_chip_data() so the next patch can combine irq_set_chip() and irq_set_handler() to irq_set_chip_and_handler(). Automated conversion with coccinelle. Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
此提交包含在:
@@ -320,8 +320,8 @@ static void __init gic_dist_init(struct gic_chip_data *gic,
|
||||
*/
|
||||
for (i = irq_start; i < irq_limit; i++) {
|
||||
irq_set_chip(i, &gic_chip);
|
||||
irq_set_chip_data(i, gic);
|
||||
irq_set_handler(i, handle_level_irq);
|
||||
irq_set_chip_data(i, gic);
|
||||
set_irq_flags(i, IRQF_VALID | IRQF_PROBE);
|
||||
}
|
||||
|
||||
|
@@ -204,8 +204,8 @@ static void locomo_setup_irq(struct locomo *lchip)
|
||||
/* Install handlers for IRQ_LOCOMO_* */
|
||||
for ( ; irq <= lchip->irq_base + 3; irq++) {
|
||||
irq_set_chip(irq, &locomo_chip);
|
||||
irq_set_chip_data(irq, lchip);
|
||||
irq_set_handler(irq, handle_level_irq);
|
||||
irq_set_chip_data(irq, lchip);
|
||||
set_irq_flags(irq, IRQF_VALID | IRQF_PROBE);
|
||||
}
|
||||
}
|
||||
|
@@ -473,15 +473,15 @@ static void sa1111_setup_irq(struct sa1111 *sachip)
|
||||
|
||||
for (irq = IRQ_GPAIN0; irq <= SSPROR; irq++) {
|
||||
irq_set_chip(irq, &sa1111_low_chip);
|
||||
irq_set_chip_data(irq, sachip);
|
||||
irq_set_handler(irq, handle_edge_irq);
|
||||
irq_set_chip_data(irq, sachip);
|
||||
set_irq_flags(irq, IRQF_VALID | IRQF_PROBE);
|
||||
}
|
||||
|
||||
for (irq = AUDXMTDMADONEA; irq <= IRQ_S1_BVD1_STSCHG; irq++) {
|
||||
irq_set_chip(irq, &sa1111_high_chip);
|
||||
irq_set_chip_data(irq, sachip);
|
||||
irq_set_handler(irq, handle_edge_irq);
|
||||
irq_set_chip_data(irq, sachip);
|
||||
set_irq_flags(irq, IRQF_VALID | IRQF_PROBE);
|
||||
}
|
||||
|
||||
|
@@ -306,8 +306,8 @@ static void __init vic_set_irq_sources(void __iomem *base,
|
||||
unsigned int irq = irq_start + i;
|
||||
|
||||
irq_set_chip(irq, &vic_chip);
|
||||
irq_set_chip_data(irq, base);
|
||||
irq_set_handler(irq, handle_level_irq);
|
||||
irq_set_chip_data(irq, base);
|
||||
set_irq_flags(irq, IRQF_VALID | IRQF_PROBE);
|
||||
}
|
||||
}
|
||||
|
新增問題並參考
封鎖使用者