Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 243401
b: refs/heads/master
c: 1251646
h: refs/heads/master
i:
  243399: 8414b01
v: v3
  • Loading branch information
Thomas Gleixner authored and David Howells committed Mar 29, 2011
1 parent af51d21 commit cfd2d1e
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: a4b48a494aef7ab2458b365e00eeebc6c0a2d997
refs/heads/master: 12516469756f773ac756ac73c4070ba8efef155a
26 changes: 13 additions & 13 deletions trunk/arch/frv/kernel/irq.c
Original file line number Diff line number Diff line change
Expand Up @@ -95,35 +95,35 @@ int show_interrupts(struct seq_file *p, void *v)
/*
* on-CPU PIC operations
*/
static void frv_cpupic_ack(unsigned int irqlevel)
static void frv_cpupic_ack(struct irq_data *d)
{
__clr_RC(irqlevel);
__clr_RC(d->irq);
__clr_IRL();
}

static void frv_cpupic_mask(unsigned int irqlevel)
static void frv_cpupic_mask(struct irq_data *d)
{
__set_MASK(irqlevel);
__set_MASK(d->irq);
}

static void frv_cpupic_mask_ack(unsigned int irqlevel)
static void frv_cpupic_mask_ack(struct irq_data *d)
{
__set_MASK(irqlevel);
__clr_RC(irqlevel);
__set_MASK(d->irq);
__clr_RC(d->irq);
__clr_IRL();
}

static void frv_cpupic_unmask(unsigned int irqlevel)
static void frv_cpupic_unmask(struct irq_data *d)
{
__clr_MASK(irqlevel);
__clr_MASK(d->irq);
}

static struct irq_chip frv_cpu_pic = {
.name = "cpu",
.ack = frv_cpupic_ack,
.mask = frv_cpupic_mask,
.mask_ack = frv_cpupic_mask_ack,
.unmask = frv_cpupic_unmask,
.irq_ack = frv_cpupic_ack,
.irq_mask = frv_cpupic_mask,
.irq_mask_ack = frv_cpupic_mask_ack,
.irq_unmask = frv_cpupic_unmask,
};

/*
Expand Down

0 comments on commit cfd2d1e

Please sign in to comment.