diff options
author | Oliver Neukum <oliver@neukum.org> | 2010-01-14 15:13:46 (GMT) |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2010-03-02 22:54:32 (GMT) |
commit | 9fd5c675864263e9f0e6bdb2d752bb380b32a01b (patch) | |
tree | 8f1c4cb051916600d872520ad3bab23a9996959c | |
parent | eedf1f17d40e24ae80007bcbe7b7e997c32995c8 (diff) | |
download | linux-9fd5c675864263e9f0e6bdb2d752bb380b32a01b.tar.xz |
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>
-rw-r--r-- | drivers/staging/frontier/alphatrack.c | 3 | ||||
-rw-r--r-- | drivers/staging/frontier/tranzport.c | 3 |
2 files changed, 0 insertions, 6 deletions
diff --git a/drivers/staging/frontier/alphatrack.c b/drivers/staging/frontier/alphatrack.c index e2f82f0..15aed87 100644 --- a/drivers/staging/frontier/alphatrack.c +++ b/drivers/staging/frontier/alphatrack.c @@ -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; } diff --git a/drivers/staging/frontier/tranzport.c b/drivers/staging/frontier/tranzport.c index 1d3f7dc..ef8fcc8 100644 --- a/drivers/staging/frontier/tranzport.c +++ b/drivers/staging/frontier/tranzport.c @@ -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; } |