powerpc: Use proper accessors for IRQ_* flags
Use the proper accessors instead of open access to irq_desc. Converted with coccinelle. Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
This commit is contained in:
@@ -103,7 +103,7 @@ static int cpm_pic_host_map(struct irq_host *h, unsigned int virq,
|
||||
{
|
||||
pr_debug("cpm_pic_host_map(%d, 0x%lx)\n", virq, hw);
|
||||
|
||||
irq_to_desc(virq)->status |= IRQ_LEVEL;
|
||||
irq_set_status_flags(virq, IRQ_LEVEL);
|
||||
set_irq_chip_and_handler(virq, &cpm_pic, handle_fasteoi_irq);
|
||||
return 0;
|
||||
}
|
||||
|
@@ -226,7 +226,7 @@ static int cpm2_pic_host_map(struct irq_host *h, unsigned int virq,
|
||||
{
|
||||
pr_debug("cpm2_pic_host_map(%d, 0x%lx)\n", virq, hw);
|
||||
|
||||
irq_to_desc(virq)->status |= IRQ_LEVEL;
|
||||
irq_set_status_flags(virq, IRQ_LEVEL);
|
||||
set_irq_chip_and_handler(virq, &cpm2_pic, handle_level_irq);
|
||||
return 0;
|
||||
}
|
||||
|
@@ -64,7 +64,7 @@ static int fsl_msi_host_map(struct irq_host *h, unsigned int virq,
|
||||
struct fsl_msi *msi_data = h->host_data;
|
||||
struct irq_chip *chip = &fsl_msi_chip;
|
||||
|
||||
irq_to_desc(virq)->status |= IRQ_TYPE_EDGE_FALLING;
|
||||
irq_set_status_flags(virq, IRQ_TYPE_EDGE_FALLING);
|
||||
|
||||
set_irq_chip_data(virq, msi_data);
|
||||
set_irq_chip_and_handler(virq, chip, handle_edge_irq);
|
||||
|
@@ -175,12 +175,12 @@ static int i8259_host_map(struct irq_host *h, unsigned int virq,
|
||||
|
||||
/* We block the internal cascade */
|
||||
if (hw == 2)
|
||||
irq_to_desc(virq)->status |= IRQ_NOREQUEST;
|
||||
irq_set_status_flags(virq, IRQ_NOREQUEST);
|
||||
|
||||
/* We use the level handler only for now, we might want to
|
||||
* be more cautious here but that works for now
|
||||
*/
|
||||
irq_to_desc(virq)->status |= IRQ_LEVEL;
|
||||
irq_set_status_flags(virq, IRQ_LEVEL);
|
||||
set_irq_chip_and_handler(virq, &i8259_pic, handle_level_irq);
|
||||
return 0;
|
||||
}
|
||||
|
@@ -213,7 +213,7 @@ static int mv64x60_host_map(struct irq_host *h, unsigned int virq,
|
||||
{
|
||||
int level1;
|
||||
|
||||
irq_to_desc(virq)->status |= IRQ_LEVEL;
|
||||
irq_set_status_flags(virq, IRQ_LEVEL);
|
||||
|
||||
level1 = (hwirq & MV64x60_LEVEL1_MASK) >> MV64x60_LEVEL1_OFFSET;
|
||||
BUG_ON(level1 > MV64x60_LEVEL1_GPP);
|
||||
|
@@ -268,7 +268,7 @@ static int qe_ic_host_map(struct irq_host *h, unsigned int virq,
|
||||
chip = &qe_ic->hc_irq;
|
||||
|
||||
set_irq_chip_data(virq, qe_ic);
|
||||
irq_to_desc(virq)->status |= IRQ_LEVEL;
|
||||
irq_set_status_flags(virq, IRQ_LEVEL);
|
||||
|
||||
set_irq_chip_and_handler(virq, chip, handle_level_irq);
|
||||
|
||||
|
@@ -391,7 +391,7 @@ static int pci_irq_host_map(struct irq_host *h, unsigned int virq,
|
||||
DBG("%s(%d, 0x%lx)\n", __func__, virq, hw);
|
||||
if ((virq >= 1) && (virq <= 4)){
|
||||
irq = virq + IRQ_PCI_INTAD_BASE - 1;
|
||||
irq_to_desc(irq)->status |= IRQ_LEVEL;
|
||||
irq_set_status_flags(irq, IRQ_LEVEL);
|
||||
set_irq_chip(irq, &tsi108_pci_irq);
|
||||
}
|
||||
return 0;
|
||||
|
@@ -244,9 +244,9 @@ void uic_irq_cascade(unsigned int virq, struct irq_desc *desc)
|
||||
|
||||
uic_irq_ret:
|
||||
raw_spin_lock(&desc->lock);
|
||||
if (desc->status & IRQ_LEVEL)
|
||||
if (irqd_is_level_type(&desc->irq_data))
|
||||
chip->irq_ack(&desc->irq_data);
|
||||
if (!(desc->status & IRQ_DISABLED) && chip->irq_unmask)
|
||||
if (!(irq_is_disabled(&desc->irq_data) && chip->irq_unmask)
|
||||
chip->irq_unmask(&desc->irq_data);
|
||||
raw_spin_unlock(&desc->lock);
|
||||
}
|
||||
|
Reference in New Issue
Block a user