mirror of
https://github.com/adulau/aha.git
synced 2024-12-28 19:56:18 +00:00
MIPS: Excite: Get rid of BKL.
It's not obvious what good it was supposed to do here anyway. Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
This commit is contained in:
parent
36ac829e5a
commit
b7a05871aa
1 changed files with 0 additions and 2 deletions
|
@ -112,10 +112,8 @@ static int iodev_open(struct inode *i, struct file *f)
|
||||||
{
|
{
|
||||||
int ret;
|
int ret;
|
||||||
|
|
||||||
lock_kernel();
|
|
||||||
ret = request_irq(iodev_irq, iodev_irqhdl, IRQF_DISABLED,
|
ret = request_irq(iodev_irq, iodev_irqhdl, IRQF_DISABLED,
|
||||||
iodev_name, &miscdev);
|
iodev_name, &miscdev);
|
||||||
unlock_kernel();
|
|
||||||
|
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue