diff options
Diffstat (limited to 'drivers/usb/class/usblp.c')
-rw-r--r-- | drivers/usb/class/usblp.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/usb/class/usblp.c b/drivers/usb/class/usblp.c index 93b5f85d7ceb..d53f9499f936 100644 --- a/drivers/usb/class/usblp.c +++ b/drivers/usb/class/usblp.c | |||
@@ -56,6 +56,7 @@ | |||
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> | ||
59 | #undef DEBUG | 60 | #undef DEBUG |
60 | #include <linux/usb.h> | 61 | #include <linux/usb.h> |
61 | 62 | ||
@@ -395,6 +396,7 @@ static int usblp_open(struct inode *inode, struct file *file) | |||
395 | if (minor < 0) | 396 | if (minor < 0) |
396 | return -ENODEV; | 397 | return -ENODEV; |
397 | 398 | ||
399 | lock_kernel(); | ||
398 | mutex_lock (&usblp_mutex); | 400 | mutex_lock (&usblp_mutex); |
399 | 401 | ||
400 | retval = -ENODEV; | 402 | retval = -ENODEV; |
@@ -434,6 +436,7 @@ static int usblp_open(struct inode *inode, struct file *file) | |||
434 | } | 436 | } |
435 | out: | 437 | out: |
436 | mutex_unlock (&usblp_mutex); | 438 | mutex_unlock (&usblp_mutex); |
439 | unlock_kernel(); | ||
437 | return retval; | 440 | return retval; |
438 | } | 441 | } |
439 | 442 | ||