mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-02 07:29:12 -04:00
sh: x3proto: Trivial ILSEL build fix.
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user