Skip to content

Commit

Permalink
MN10300: Convert ASB2364 FPGA irq_chip to new functions
Browse files Browse the repository at this point in the history
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: David Howells <dhowells@redhat.com>
  • Loading branch information
Thomas Gleixner authored and David Howells committed Mar 18, 2011
1 parent 3ba6546 commit 1ddc4a3
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions arch/mn10300/unit-asb2364/irq-fpga.c
Original file line number Diff line number Diff line change
Expand Up @@ -17,38 +17,38 @@
/*
* FPGA PIC operations
*/
static void asb2364_fpga_mask(unsigned int irq)
static void asb2364_fpga_mask(struct irq_data *d)
{
ASB2364_FPGA_REG_MASK(irq - NR_CPU_IRQS) = 0x0001;
ASB2364_FPGA_REG_MASK(d->irq - NR_CPU_IRQS) = 0x0001;
SyncExBus();
}

static void asb2364_fpga_ack(unsigned int irq)
static void asb2364_fpga_ack(struct irq_data *d)
{
ASB2364_FPGA_REG_IRQ(irq - NR_CPU_IRQS) = 0x0001;
ASB2364_FPGA_REG_IRQ(d->irq - NR_CPU_IRQS) = 0x0001;
SyncExBus();
}

static void asb2364_fpga_mask_ack(unsigned int irq)
static void asb2364_fpga_mask_ack(struct irq_data *d)
{
ASB2364_FPGA_REG_MASK(irq - NR_CPU_IRQS) = 0x0001;
ASB2364_FPGA_REG_MASK(d->irq - NR_CPU_IRQS) = 0x0001;
SyncExBus();
ASB2364_FPGA_REG_IRQ(irq - NR_CPU_IRQS) = 0x0001;
ASB2364_FPGA_REG_IRQ(d->irq - NR_CPU_IRQS) = 0x0001;
SyncExBus();
}

static void asb2364_fpga_unmask(unsigned int irq)
static void asb2364_fpga_unmask(struct irq_data *d)
{
ASB2364_FPGA_REG_MASK(irq - NR_CPU_IRQS) = 0x0000;
ASB2364_FPGA_REG_MASK(d->irq - NR_CPU_IRQS) = 0x0000;
SyncExBus();
}

static struct irq_chip asb2364_fpga_pic = {
.name = "fpga",
.ack = asb2364_fpga_ack,
.mask = asb2364_fpga_mask,
.mask_ack = asb2364_fpga_mask_ack,
.unmask = asb2364_fpga_unmask,
.irq_ack = asb2364_fpga_ack,
.irq_mask = asb2364_fpga_mask,
.irq_mask_ack = asb2364_fpga_mask_ack,
.irq_unmask = asb2364_fpga_unmask,
};

/*
Expand Down

0 comments on commit 1ddc4a3

Please sign in to comment.