mirror of
https://github.com/torvalds/linux.git
synced 2024-11-23 04:31:50 +00:00
USB: BKL removal: frontier
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>
This commit is contained in:
parent
eedf1f17d4
commit
9fd5c67586
@ -41,7 +41,6 @@
|
||||
#include <linux/mutex.h>
|
||||
|
||||
#include <linux/uaccess.h>
|
||||
#include <linux/smp_lock.h>
|
||||
#include <linux/input.h>
|
||||
#include <linux/usb.h>
|
||||
#include <linux/poll.h>
|
||||
@ -326,7 +325,6 @@ static int usb_alphatrack_open(struct inode *inode, struct file *file)
|
||||
int retval = 0;
|
||||
struct usb_interface *interface;
|
||||
|
||||
lock_kernel();
|
||||
nonseekable_open(inode, file);
|
||||
subminor = iminor(inode);
|
||||
|
||||
@ -396,7 +394,6 @@ unlock_exit:
|
||||
|
||||
unlock_disconnect_exit:
|
||||
mutex_unlock(&disconnect_mutex);
|
||||
unlock_kernel();
|
||||
|
||||
return retval;
|
||||
}
|
||||
|
@ -40,7 +40,6 @@
|
||||
#include <linux/mutex.h>
|
||||
|
||||
#include <linux/uaccess.h>
|
||||
#include <linux/smp_lock.h>
|
||||
#include <linux/input.h>
|
||||
#include <linux/usb.h>
|
||||
#include <linux/poll.h>
|
||||
@ -344,7 +343,6 @@ static int usb_tranzport_open(struct inode *inode, struct file *file)
|
||||
int retval = 0;
|
||||
struct usb_interface *interface;
|
||||
|
||||
lock_kernel();
|
||||
nonseekable_open(inode, file);
|
||||
subminor = iminor(inode);
|
||||
|
||||
@ -415,7 +413,6 @@ unlock_exit:
|
||||
|
||||
unlock_disconnect_exit:
|
||||
mutex_unlock(&disconnect_mutex);
|
||||
unlock_kernel();
|
||||
|
||||
return retval;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user