Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 243362
b: refs/heads/master
c: 9741f28
h: refs/heads/master
v: v3
  • Loading branch information
Thomas Gleixner committed Mar 29, 2011
1 parent 0e08d8b commit 45d2a64
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: ac3460554b8f8861c2857bb1a3692243e6327e79
refs/heads/master: 9741f28688de348e74a43173e0229cbb569fb9b0
26 changes: 13 additions & 13 deletions trunk/arch/frv/kernel/irq-mb93093.c
Original file line number Diff line number Diff line change
Expand Up @@ -35,44 +35,44 @@
/*
* off-CPU FPGA PIC operations
*/
static void frv_fpga_mask(unsigned int irq)
static void frv_fpga_mask(struct irq_data *d)
{
uint16_t imr = __get_IMR();

imr |= 1 << (irq - IRQ_BASE_FPGA);
imr |= 1 << (d->irq - IRQ_BASE_FPGA);
__set_IMR(imr);
}

static void frv_fpga_ack(unsigned int irq)
static void frv_fpga_ack(struct irq_data *d)
{
__clr_IFR(1 << (irq - IRQ_BASE_FPGA));
__clr_IFR(1 << (d->irq - IRQ_BASE_FPGA));
}

static void frv_fpga_mask_ack(unsigned int irq)
static void frv_fpga_mask_ack(struct irq_data *d)
{
uint16_t imr = __get_IMR();

imr |= 1 << (irq - IRQ_BASE_FPGA);
imr |= 1 << (d->irq - IRQ_BASE_FPGA);
__set_IMR(imr);

__clr_IFR(1 << (irq - IRQ_BASE_FPGA));
__clr_IFR(1 << (d->irq - IRQ_BASE_FPGA));
}

static void frv_fpga_unmask(unsigned int irq)
static void frv_fpga_unmask(struct irq_data *d)
{
uint16_t imr = __get_IMR();

imr &= ~(1 << (irq - IRQ_BASE_FPGA));
imr &= ~(1 << (d->irq - IRQ_BASE_FPGA));

__set_IMR(imr);
}

static struct irq_chip frv_fpga_pic = {
.name = "mb93093",
.ack = frv_fpga_ack,
.mask = frv_fpga_mask,
.mask_ack = frv_fpga_mask_ack,
.unmask = frv_fpga_unmask,
.irq_ack = frv_fpga_ack,
.irq_mask = frv_fpga_mask,
.irq_mask_ack = frv_fpga_mask_ack,
.irq_unmask = frv_fpga_unmask,
};

/*
Expand Down

0 comments on commit 45d2a64

Please sign in to comment.