Commit 41d735e8 authored by Thomas Gleixner's avatar Thomas Gleixner Committed by Ralf Baechle

MIPS: AR7: Convert to new irq_chip functions

Signed-off-by: default avatarThomas Gleixner <tglx@linutronix.de>
To: linux-mips@linux-mips.org
Patchwork: https://patchwork.linux-mips.org/patch/2174/Signed-off-by: default avatarRalf Baechle <ralf@linux-mips.org>
parent d24c1a26
...@@ -49,51 +49,51 @@ ...@@ -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 = {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment