diff options
author | Paul Mundt <lethal@linux-sh.org> | 2007-08-08 09:31:38 +0200 |
---|---|---|
committer | Paul Mundt <lethal@linux-sh.org> | 2007-09-21 04:57:48 +0200 |
commit | af24fdc1685ff8b27075afbc12d7f6b35b385ae1 (patch) | |
tree | bb7d4fe99eedd73e3a03357d974795b1d2862f00 /arch | |
parent | sh: x3proto: Hook up ethernet and USB platform devices. (diff) | |
download | linux-af24fdc1685ff8b27075afbc12d7f6b35b385ae1.tar.xz linux-af24fdc1685ff8b27075afbc12d7f6b35b385ae1.zip |
sh: x3proto: Trivial ILSEL build fix.
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/sh/boards/renesas/x3proto/ilsel.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/arch/sh/boards/renesas/x3proto/ilsel.c b/arch/sh/boards/renesas/x3proto/ilsel.c index ff9c7edf1b6f..6d4454fef97c 100644 --- a/arch/sh/boards/renesas/x3proto/ilsel.c +++ b/arch/sh/boards/renesas/x3proto/ilsel.c @@ -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); |