Skip to content

Commit

Permalink
[MIPS] Remove dead code from irq_txx9.c
Browse files Browse the repository at this point in the history
Signed-off-by: Atsushi Nemoto <anemo@mba.ocn.ne.jp>
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
  • Loading branch information
Atsushi Nemoto authored and Ralf Baechle committed Aug 27, 2007
1 parent 6c76988 commit 5d3fdea
Showing 1 changed file with 3 additions and 7 deletions.
10 changes: 3 additions & 7 deletions arch/mips/kernel/irq_txx9.c
Original file line number Diff line number Diff line change
Expand Up @@ -105,13 +105,9 @@ static void txx9_irq_mask_ack(unsigned int irq)
unsigned int irq_nr = irq - TXX9_IRQ_BASE;

txx9_irq_mask(irq);
if (TXx9_IRCR_EDGE(txx9irq[irq_nr].mode)) {
/* clear edge detection */
u32 cr = __raw_readl(&txx9_ircptr->cr[irq_nr / 8]);
cr = (cr >> ((irq_nr & (8 - 1)) * 2)) & 3;
__raw_writel(TXx9_IRSCR_EIClrE | irq_nr,
&txx9_ircptr->scr);
}
/* clear edge detection */
if (unlikely(TXx9_IRCR_EDGE(txx9irq[irq_nr].mode)))
__raw_writel(TXx9_IRSCR_EIClrE | irq_nr, &txx9_ircptr->scr);
}

static int txx9_irq_set_type(unsigned int irq, unsigned int flow_type)
Expand Down

0 comments on commit 5d3fdea

Please sign in to comment.