diff options
author | Ralf Baechle <ralf@linux-mips.org> | 2009-09-28 16:59:12 +0100 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2009-09-30 21:47:01 +0200 |
commit | b7a05871aac3a75a48faebcde92d881f9625c066 (patch) | |
tree | 092be6b499fe27278c7695b8e724779af58fe375 | |
parent | 36ac829e5a6ab29a6fd990588d170438bfb5c7a0 (diff) |
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>
-rw-r--r-- | arch/mips/basler/excite/excite_iodev.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/arch/mips/basler/excite/excite_iodev.c b/arch/mips/basler/excite/excite_iodev.c index dfbfd7e2ac08..938b1d0b7652 100644 --- a/arch/mips/basler/excite/excite_iodev.c +++ b/arch/mips/basler/excite/excite_iodev.c @@ -112,10 +112,8 @@ static int iodev_open(struct inode *i, struct file *f) { int ret; - lock_kernel(); ret = request_irq(iodev_irq, iodev_irqhdl, IRQF_DISABLED, iodev_name, &miscdev); - unlock_kernel(); return ret; } |