MIPS: AR7: Convert to new irq_chip functions
Signed-off-by: Thomas Gleixner <tglx@linutronix.de> To: linux-mips@linux-mips.org Patchwork: https://patchwork.linux-mips.org/patch/2174/ Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
This commit is contained in:
parent
d24c1a26ca
commit
41d735e870
1 changed files with 21 additions and 21 deletions
|
@ -49,51 +49,51 @@
|
||||||
|
|
||||||
static int ar7_irq_base;
|
static int ar7_irq_base;
|
||||||
|
|
||||||
static void ar7_unmask_irq(unsigned int irq)
|
static void ar7_unmask_irq(struct irq_data *d)
|
||||||
{
|
{
|
||||||
writel(1 << ((irq - ar7_irq_base) % 32),
|
writel(1 << ((d->irq - ar7_irq_base) % 32),
|
||||||
REG(ESR_OFFSET(irq - ar7_irq_base)));
|
REG(ESR_OFFSET(d->irq - ar7_irq_base)));
|
||||||
}
|
}
|
||||||
|
|
||||||
static void ar7_mask_irq(unsigned int irq)
|
static void ar7_mask_irq(struct irq_data *d)
|
||||||
{
|
{
|
||||||
writel(1 << ((irq - ar7_irq_base) % 32),
|
writel(1 << ((d->irq - ar7_irq_base) % 32),
|
||||||
REG(ECR_OFFSET(irq - ar7_irq_base)));
|
REG(ECR_OFFSET(d->irq - ar7_irq_base)));
|
||||||
}
|
}
|
||||||
|
|
||||||
static void ar7_ack_irq(unsigned int irq)
|
static void ar7_ack_irq(struct irq_data *d)
|
||||||
{
|
{
|
||||||
writel(1 << ((irq - ar7_irq_base) % 32),
|
writel(1 << ((d->irq - ar7_irq_base) % 32),
|
||||||
REG(CR_OFFSET(irq - ar7_irq_base)));
|
REG(CR_OFFSET(d->irq - ar7_irq_base)));
|
||||||
}
|
}
|
||||||
|
|
||||||
static void ar7_unmask_sec_irq(unsigned int irq)
|
static void ar7_unmask_sec_irq(struct irq_data *d)
|
||||||
{
|
{
|
||||||
writel(1 << (irq - ar7_irq_base - 40), REG(SEC_ESR_OFFSET));
|
writel(1 << (d->irq - ar7_irq_base - 40), REG(SEC_ESR_OFFSET));
|
||||||
}
|
}
|
||||||
|
|
||||||
static void ar7_mask_sec_irq(unsigned int irq)
|
static void ar7_mask_sec_irq(struct irq_data *d)
|
||||||
{
|
{
|
||||||
writel(1 << (irq - ar7_irq_base - 40), REG(SEC_ECR_OFFSET));
|
writel(1 << (d->irq - ar7_irq_base - 40), REG(SEC_ECR_OFFSET));
|
||||||
}
|
}
|
||||||
|
|
||||||
static void ar7_ack_sec_irq(unsigned int irq)
|
static void ar7_ack_sec_irq(struct irq_data *d)
|
||||||
{
|
{
|
||||||
writel(1 << (irq - ar7_irq_base - 40), REG(SEC_CR_OFFSET));
|
writel(1 << (d->irq - ar7_irq_base - 40), REG(SEC_CR_OFFSET));
|
||||||
}
|
}
|
||||||
|
|
||||||
static struct irq_chip ar7_irq_type = {
|
static struct irq_chip ar7_irq_type = {
|
||||||
.name = "AR7",
|
.name = "AR7",
|
||||||
.unmask = ar7_unmask_irq,
|
.irq_unmask = ar7_unmask_irq,
|
||||||
.mask = ar7_mask_irq,
|
.irq_mask = ar7_mask_irq,
|
||||||
.ack = ar7_ack_irq
|
.irq_ack = ar7_ack_irq
|
||||||
};
|
};
|
||||||
|
|
||||||
static struct irq_chip ar7_sec_irq_type = {
|
static struct irq_chip ar7_sec_irq_type = {
|
||||||
.name = "AR7",
|
.name = "AR7",
|
||||||
.unmask = ar7_unmask_sec_irq,
|
.irq_unmask = ar7_unmask_sec_irq,
|
||||||
.mask = ar7_mask_sec_irq,
|
.irq_mask = ar7_mask_sec_irq,
|
||||||
.ack = ar7_ack_sec_irq,
|
.irq_ack = ar7_ack_sec_irq,
|
||||||
};
|
};
|
||||||
|
|
||||||
static struct irqaction ar7_cascade_action = {
|
static struct irqaction ar7_cascade_action = {
|
||||||
|
|
Loading…
Add table
Reference in a new issue