projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
0022457
)
USB: BKL removal: cdc-wdm
author
Oliver Neukum
<
[email protected]
>
Thu, 14 Jan 2010 15:09:26 +0000
(16:09 +0100)
committer
Greg Kroah-Hartman
<
[email protected]
>
Tue, 2 Mar 2010 22:54:27 +0000
(14:54 -0800)
BKL not needed at all. Removed without replacement.
Signed-off-by: Oliver Neukum <
[email protected]
>
Signed-off-by: Greg Kroah-Hartman <
[email protected]
>
drivers/usb/class/cdc-wdm.c
patch
|
blob
|
history
diff --git
a/drivers/usb/class/cdc-wdm.c
b/drivers/usb/class/cdc-wdm.c
index b75a3d8bb02f8f19a9faafc8e44eb71237dad865..18aafcb08fc8be08536a4ff3caf75859bc003116 100644
(file)
--- a/
drivers/usb/class/cdc-wdm.c
+++ b/
drivers/usb/class/cdc-wdm.c
@@
-19,7
+19,6
@@
#include <linux/uaccess.h>
#include <linux/bitops.h>
#include <linux/poll.h>
-#include <linux/smp_lock.h>
#include <linux/usb.h>
#include <linux/usb/cdc.h>
#include <asm/byteorder.h>
@@
-517,7
+516,6
@@
static int wdm_open(struct inode *inode, struct file *file)
struct usb_interface *intf;
struct wdm_device *desc;
- lock_kernel();
mutex_lock(&wdm_mutex);
intf = usb_find_interface(&wdm_driver, minor);
if (!intf)
@@
-550,7
+548,6
@@
static int wdm_open(struct inode *inode, struct file *file)
usb_autopm_put_interface(desc->intf);
out:
mutex_unlock(&wdm_mutex);
- unlock_kernel();
return rv;
}