Commit 39a17940 authored by Thomas Gleixner's avatar Thomas Gleixner Committed by Greg Ungerer

m68knommu: Convert 68328 ints irq_chip to new functions

Signed-off-by: default avatarThomas Gleixner <tglx@linutronix.de>
Signed-off-by: default avatarGreg Ungerer <gerg@uclinux.org>
parent f80c353c
...@@ -135,20 +135,20 @@ void process_int(int vec, struct pt_regs *fp) ...@@ -135,20 +135,20 @@ void process_int(int vec, struct pt_regs *fp)
} }
} }
static void intc_irq_unmask(unsigned int irq) static void intc_irq_unmask(struct irq_data *d)
{ {
IMR &= ~(1<<irq); IMR &= ~(1 << d->irq);
} }
static void intc_irq_mask(unsigned int irq) static void intc_irq_mask(struct irq_data *d)
{ {
IMR |= (1<<irq); IMR |= (1 << d->irq);
} }
static struct irq_chip intc_irq_chip = { static struct irq_chip intc_irq_chip = {
.name = "M68K-INTC", .name = "M68K-INTC",
.mask = intc_irq_mask, .irq_mask = intc_irq_mask,
.unmask = intc_irq_unmask, .irq_unmask = intc_irq_unmask,
}; };
/* /*
......
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