Skip to content

Commit

Permalink
frv: Remove stale irq_chip.end
Browse files Browse the repository at this point in the history
irq_chip.end got obsolete with the removal of __do_IRQ().

irq-mb93093.c even lacks an implementation, but nobody noticed that
it's broken since commit 88d6e1 in 2006.

Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: David Howells <dhowells@redhat.com>
  • Loading branch information
Thomas Gleixner authored and dhowells committed Mar 29, 2011
1 parent 5ca7202 commit c4b1598
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 7 deletions.
1 change: 0 additions & 1 deletion arch/frv/kernel/irq-mb93093.c
Expand Up @@ -73,7 +73,6 @@ static struct irq_chip frv_fpga_pic = {
.mask = frv_fpga_mask,
.mask_ack = frv_fpga_mask_ack,
.unmask = frv_fpga_unmask,
.end = frv_fpga_end,
};

/*
Expand Down
6 changes: 0 additions & 6 deletions arch/frv/kernel/irq.c
Expand Up @@ -118,18 +118,12 @@ static void frv_cpupic_unmask(unsigned int irqlevel)
__clr_MASK(irqlevel);
}

static void frv_cpupic_end(unsigned int irqlevel)
{
__clr_MASK(irqlevel);
}

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,
.end = frv_cpupic_end,
};

/*
Expand Down

0 comments on commit c4b1598

Please sign in to comment.