Skip to content

Commit

Permalink
sh: x3proto: Trivial ILSEL build fix.
Browse files Browse the repository at this point in the history
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
  • Loading branch information
Paul Mundt committed Sep 21, 2007
1 parent e7109a9 commit af24fdc
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions arch/sh/boards/renesas/x3proto/ilsel.c
Original file line number Diff line number Diff line change
Expand Up @@ -140,12 +140,12 @@ void ilsel_disable(unsigned int irq)
unsigned long addr;
unsigned int tmp;

addr = mk_ilsel_addr(bit);
addr = mk_ilsel_addr(irq);

tmp = ctrl_inw(addr);
tmp &= ~(0xf << mk_ilsel_shift(bit));
tmp &= ~(0xf << mk_ilsel_shift(irq));
ctrl_outw(tmp, addr);

clear_bit(bit, &ilsel_level_map);
clear_bit(irq, &ilsel_level_map);
}
EXPORT_SYMBOL_GPL(ilsel_disable);

0 comments on commit af24fdc

Please sign in to comment.