Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 243364
b: refs/heads/master
c: 380e311
h: refs/heads/master
v: v3
  • Loading branch information
Thomas Gleixner committed Mar 29, 2011
1 parent 8c016da commit 1042e3b
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: a55174f1ec5052d3eff5ba6cd25e3d58bdfb1713
refs/heads/master: 380e31119611b26ee593e4426115feae765be837
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 1042e3b

Please sign in to comment.