From: Oliver Neukum Date: Thu, 14 Jan 2010 15:09:26 +0000 (+0100) Subject: USB: BKL removal: cdc-wdm X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=94015f6e6ba11040f75f4b42aada8de23965290e;p=GitHub%2FLineageOS%2FG12%2Fandroid_kernel_amlogic_linux-4.9.git USB: BKL removal: cdc-wdm BKL not needed at all. Removed without replacement. Signed-off-by: Oliver Neukum Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/usb/class/cdc-wdm.c b/drivers/usb/class/cdc-wdm.c index b75a3d8bb02f..18aafcb08fc8 100644 --- a/drivers/usb/class/cdc-wdm.c +++ b/drivers/usb/class/cdc-wdm.c @@ -19,7 +19,6 @@ #include #include #include -#include #include #include #include @@ -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; }