Skip to content

Commit

Permalink
USB: BKL removal: legousbtower
Browse files Browse the repository at this point in the history
BKL was not needed at all. Removed without replacement.

Signed-off-by: Oliver Neukum <oliver@neukum.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
  • Loading branch information
Oliver Neukum authored and Greg Kroah-Hartman committed Mar 2, 2010
1 parent 6248c52 commit 3c02b1d
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions drivers/usb/misc/legousbtower.c
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,6 @@
#include <linux/module.h>
#include <linux/completion.h>
#include <linux/mutex.h>
#include <linux/smp_lock.h>
#include <asm/uaccess.h>
#include <linux/usb.h>
#include <linux/poll.h>
Expand Down Expand Up @@ -346,7 +345,6 @@ static int tower_open (struct inode *inode, struct file *file)

dbg(2, "%s: enter", __func__);

lock_kernel();
nonseekable_open(inode, file);
subminor = iminor(inode);

Expand Down Expand Up @@ -432,7 +430,6 @@ static int tower_open (struct inode *inode, struct file *file)
mutex_unlock(&dev->lock);

exit:
unlock_kernel();
dbg(2, "%s: leave, return value %d ", __func__, retval);

return retval;
Expand Down

0 comments on commit 3c02b1d

Please sign in to comment.