aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/usb/class
diff options
context:
space:
mode:
authorOliver Neukum <oliver@neukum.org>2010-01-14 10:07:37 -0500
committerGreg Kroah-Hartman <gregkh@suse.de>2010-03-02 17:54:26 -0500
commitc8b492a86d71d43fb32e29282e6405663177b9e4 (patch)
treeafa4104aa17ec15235e47ea8540dbc6c962ad05d /drivers/usb/class
parent4e0961d53020b0fed83168d469ce44e1b3f25898 (diff)
usb: BKL removal: usblp
BKL was not needed at all. Removed without replacement. Signed-off-by: Oliver Neukum <oliver@neukum.org> Acked-by: Pete Zaitcev <zaitcev@redhat.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/usb/class')
-rw-r--r--drivers/usb/class/usblp.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/drivers/usb/class/usblp.c b/drivers/usb/class/usblp.c
index d53f9499f936..93b5f85d7ceb 100644
--- a/drivers/usb/class/usblp.c
+++ b/drivers/usb/class/usblp.c
@@ -56,7 +56,6 @@
56#include <linux/slab.h> 56#include <linux/slab.h>
57#include <linux/lp.h> 57#include <linux/lp.h>
58#include <linux/mutex.h> 58#include <linux/mutex.h>
59#include <linux/smp_lock.h>
60#undef DEBUG 59#undef DEBUG
61#include <linux/usb.h> 60#include <linux/usb.h>
62 61
@@ -396,7 +395,6 @@ static int usblp_open(struct inode *inode, struct file *file)
396 if (minor < 0) 395 if (minor < 0)
397 return -ENODEV; 396 return -ENODEV;
398 397
399 lock_kernel();
400 mutex_lock (&usblp_mutex); 398 mutex_lock (&usblp_mutex);
401 399
402 retval = -ENODEV; 400 retval = -ENODEV;
@@ -436,7 +434,6 @@ static int usblp_open(struct inode *inode, struct file *file)
436 } 434 }
437out: 435out:
438 mutex_unlock (&usblp_mutex); 436 mutex_unlock (&usblp_mutex);
439 unlock_kernel();
440 return retval; 437 return retval;
441} 438}
442 439